Difference between revisions of "Wait"

From Moving Light Assistant
Jump to: navigation, search
(Added Page.)
 
(No difference)

Latest revision as of 23:27, 8 July 2014

Wait( time )

time is a number in seconds.

This function will cause a script to pause and wait for the specified number of seconds. Decimal seconds are valid, i.e. 0.1 or 0.05. The function is not time accurate and the wait period is the minimum the script will pause for. If the application is busy, the wait period may be longer. The minimum period that can be handled is about 0.02 seconds.

Example.

Wait(0.5)

This would pause the script for at least 0.5 seconds.