Jump to content

Repeat / loop command?


Recommended Posts

Try the autoit help file for

'while'

'for'

'do'

An example to loop a set of lines 10 times

Dim $count = 0

Do

       MsgBox (64, "Loop", "This message will appear 10 times!")
     
      ;This is the end of the loop, we have to keep count so the 'do' function knows when to stop!
       $count += 1

Until $count = 10
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...