Name
Sleep -- halt script execution for a certain amount of time (V10.0)
Synopsis
Sleep(time)
Function
This function halts the script execution for the time interval specified in time. This time interval must be specified in milliseconds.

Sleep() does the same as Wait() except that Sleep() always operates in milliseconds whereas Wait() uses ticks by default.

Inputs
time
time interval in milliseconds
Example
Sleep(4000)
The code above halts the script execution for 4 seconds.

Show TOC