wait
Top  Previous  Next

wait ( integer Delay )

Use this function to delay execution of the script for a specified number of milliseconds.

Parameters

Delays  
 
A positive integer specifying the delay in milliseconds.  
 
Example
 
This set of statements captures and displays an image every second:  
 
do  
grabIm (1)  
wait (1000)  
loop