demo Posted January 27, 2004 Posted January 27, 2004 Well I tried to look in the help file but I could not find it... Can anyone help me out?
Administrators Jon Posted January 27, 2004 Administrators Posted January 27, 2004 3 ways (all in keywords section) Do...loop For...next While...wend
demo Posted January 27, 2004 Author Posted January 27, 2004 If I picked the "DO" code would I put "loop" at the end of my code?
trids Posted January 27, 2004 Posted January 27, 2004 How Do You Make Autoit 3 Repeat?You feed it cucumbers .. Unless you're looking for Do..Until and/or While..Wend and/or For..Nextloops? If you are, then they're there .. see the documentation under Keyword/Statement Reference for details.
Administrators Jon Posted January 27, 2004 Administrators Posted January 27, 2004 Whoops, do...until There should be an example at the bottom of the page in the helpfile. $i = 0 Do MsgBox(0, "Value of $i is:", $i) $i = $i + 1 Until $i = 10
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now