Does anyone have code that would click a banner even when it minimized. Also set the clicking routine at 5,10,and 15 minutes.
Printable View
Does anyone have code that would click a banner even when it minimized. Also set the clicking routine at 5,10,and 15 minutes.
Use the SendMessage api function to send the wm_ldown and wm_lup messages.
And for clicking every 5, 10, 15 minutes:http://forums.vb-world.net/showthrea...threadid=38556
what do u mean by "clicking a banner"... do u mean clicking a "Web HTML bannner???"
if so... (make sure that the banner is the first thing in the page)... this sample only works if the banners use <a href="url"> other wise it will not work... u get the idea anywayz... if u need more help msg me... or post more... hehe :D :D :D :D :D
PS: if you're using netscape... then forget everything in this code.. because i have not tested it in netscape and dont know if it'll work in netscape or not... because im not such a netscape user... i hate its guts!!!! //so thats allCode:<script language="JavaScript">
<!-- //Start Hiding from idiots
var mins = 15;
function doClick() {
var link = document.links(0).href;
window.open(link,"Ads");
window.location.reload();
}
document.onload = setTimeout("doClick()", mins * 6000); //60 secs = 6000 msecs
//This is a quick function that opens a window and puts all
//ads in that windows.
//end hide -->
</script>
I think he means clicking a paid2surf banner.
if that is the case then the banner apps these days have more programming in them to prevent 'cheaters' and u'd first have to findout all u can about that banner comp.... like if they use a file inside ur page that collects info such as platform, ip, browser type, res, etc.... then u'd need to do some coding... a lot more than u think to get past that, because there is a way to get past anything!