SLEEP  keyword
    Forces a delay of time.  It automatically forces animations to complete, so no need to call WAIT.
    Syntax
    
        
            
                SLEEP time
            
        
    
        Parameters
        
            
                    - time: number of milliseconds. ie. 1000 = 1 second (required)
Example
    
        
SLEEP 2000  ' Delay for 2 seconds
Go back to list of Keywords.