Wait |
Top Previous Next |
Prototype
Wait(intTime)
Description
Waits for x milliseconds before proceeding with the script execution.
Parameters
IntTime: integer value corresponding to the number of milliseconds.
Returned value
None.
Notes
None.
Example
// Wait for one second Wait (1000);
// Play the audio file asynchronously only once PlaySound('c:\sound\error.wav', False, False);
|