Results 1 to 5 of 5

Thread: Automated clicking

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2000
    Location
    USA
    Posts
    37

    Lightbulb

    Does anyone have code that would click a banner even when it minimized. Also set the clicking routine at 5,10,and 15 minutes.

  2. #2
    Fanatic Member
    Join Date
    Feb 2000
    Location
    The Netherlands
    Posts
    715
    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
    Oetje
    [email protected]
    93606776
    Visual Basic 6, Windows 2000

    Never pet a burning dog

  3. #3
    Fanatic Member MoMad's Avatar
    Join Date
    Oct 2000
    Location
    Seattle, WA
    Posts
    625
    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

    Code:
    <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>
    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 all
    :MoMad:
    Nice Sig!

    http://go.to/momad/ Status: Not Ready

  4. #4
    Fanatic Member
    Join Date
    Feb 2000
    Location
    The Netherlands
    Posts
    715
    I think he means clicking a paid2surf banner.
    Oetje
    [email protected]
    93606776
    Visual Basic 6, Windows 2000

    Never pet a burning dog

  5. #5
    Fanatic Member MoMad's Avatar
    Join Date
    Oct 2000
    Location
    Seattle, WA
    Posts
    625
    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!
    :MoMad:
    Nice Sig!

    http://go.to/momad/ Status: Not Ready

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width