Function Reference


Sleep

Pause script execution.

Sleep ( delay )

Parameters

delay Amount of time to pause (in milliseconds).

Return Value

None.

Remarks

Maximum sleep time is 2147483647 milliseconds (24 days) and the minimum is 10 milliseconds. So using 1-9 will automatically default to 10 milliseconds.

Due to internal implementation, the sleep time completion is checked every 10 milisseconds so the precision cannot be less than 10.
Note that other running processes often affect the timing accuracy and so pauses are likely to last for slightly longer than requested.

Example

; Sleep for 5 seconds.

Sleep(5000)