Sleep
Sleep milliseconds
Description
Sleep pauses execution of the program for a period of time equal to milliseconds. The program does not yield the event loop: execution will continue on the next statement. In most cases, SetTimeOut() will be more useful.
Example
Rem Sleep Example 'Pause execution for 5 seconds Sleep 5000