Jump to content

Looping?


Recommended Posts

heres what I want to loop over and over without it ever stopping, how would i do that?

Send("Test"); 
send("{ENTER}");
Sleep(20000);
Send("Test");
send("{ENTER}");
Sleep(20000);

how would i go about doing this?

I just want it to loop over and over and over without ever stopping.

is it a timple just

Do

<code>

Loop

??

Link to comment
Share on other sites

You have two options:

While 1

;stuff

WEnd

Do

;stuff

Until 0

The 1 and 0 represent TRUE* and FALSE respectively. The while-loop executes as long as it's condition is TRUE. See "Conditional Statements" in the help file for more information.

*Technically, any non-zero value is TRUE.

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...