+ Reply to Thread + Post New Thread
Results 1 to 8 of 8

Thread: I gotta program a Simple little tool. need advice

  1. #1
    Noobie
    Join Date
    Apr 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default I gotta program a Simple little tool. need advice

    howdy blackhatters,

    I gotta program a little tool, basically what i need it to do is

    A. There will be a list of websites
    B. Open the browser and go to 1 of the websites
    C. *timer of 15 seconds, then close the browser window*
    D. Open the next website in the list

    Now, im not asking someone to program this for me, but im NOT a programmer.

    What language should i "program" this in? Or would this be done with a Macro or something?

    Or does this program already exist?

    Thanks
    Johnny 5

  2. Shorten URL    SEO Services    Buy Xrumer

    Sponsored Links

  3. #2
    Noobie
    Join Date
    Apr 2008
    Posts
    187
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Macro would work awesome.

    /J

  4. #3
    Noobie
    Join Date
    Apr 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You should try out WinAutomation, you can get a 30 day trial.

    The interface is pretty easy, you can use drag and drop.

  5. #4
    Noobie
    Join Date
    Apr 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    hey thanks for the suggestions. Im using IMacro And I think i can easily do everything I want to with this!

    Thanks guys

  6. #5
    Noobie
    Join Date
    Apr 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I would use Autoit maybe i finde some old code ( i thing i have done something simmilare before) i i finde something i will edit my post...

  7. #6
    Noobie
    Join Date
    Apr 2008
    Posts
    116
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yeh like ericsson said if thats all you want it to do macro would do the job nicley for you.

  8. #7
    Noobie
    Join Date
    Apr 2008
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I wouls suggest use perl on windows you can get from activeperl.com

    use the module
    Win32::IEAutomation

    sample code just a basic you need to build on this

    Code:
    use Win32::IEAutomation;
    
    
    my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1);
    $ie->gotoURL('http://someurl.com');
    $ie->WaitforDone;
    sleep(15);
    $ie->closeIE();
    loop this and you will get what you want to achieve

  9. #8
    Noobie
    Join Date
    Aug 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You don't have to be a programmer, this is scripting in batch.

    EDIT: I don't know how to end the website in 15 seconds in batch.

    this is for internet explorer

    Code:
    @echo off
    start (website u want)
    TASKKILL /F /IM "explorer.exe"
    start (website u want)
    TASKKILL /F /IM "explorer.exe"

+ Reply to Thread

Tags for this Thread

Posting Permissions

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