Jump to content

Making script repeat itself


Guest RingmasterLQ
 Share

Recommended Posts

Guest RingmasterLQ

Ok..I'm having trouble with a basic script here. Here's the script:

Sleep (10000) ; time before script starts

$buttonpress = 10 ; Number of buttonpress attempts to make While $buttonpress > 0

Send ("2") ; Hit the 2 button

Sleep (1305) ; Allow time to press button again

$buttonpress = $buttonpress - 1 ; Decrease button counter

Now, here's my problem...I can't figure out how to make the script repeat itself after it's done cycling through the motions. Can somebody help me? I run it, but it runs once, and then does not run anymore. Any help is appreciated :ph34r:.

Thanks...,

Chris.

Link to comment
Share on other sites

Maybe that first sleep should be outside the loop.

Sleep (10000); time before script starts
For $buttonpress = 10 to 0 Step -1
  Send ("2"); Hit the 2 button
  Sleep (1305); Allow time to press button again
Next
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...