Delay

Prototype

void Delay( int nMilliseconds )

Parameters

int nMilliseconds
The number of milliseconds to delay.

Remarks

This module stalls program execution by the specified number of milliseconds. There is no functional difference between this module and the method Runtime.Delay.

Important: Do not use this module to delay for more than a few seconds.

Example
print "Start";
run Delay( 1000 );
print "Finished";
See Also

Runtime.Delay