Description
- Waits for specified amount of time.
Syntax
- Wait.ForInterval(n)
Parameters
- n
- (integer) time to wait, in milliseconds
Examples
- Wait.ForInterval(300)
- Waits for 300 milliseconds.
- Wait.ForInterval( arg(2)*4 )
- Waits for the value of "arg(2) times 4" milliseconds.
Notes
- Wait.ForInterval() accepts as a parameter an argument from a function call:
Wait.ForInterval( arg(1) )
which the normal Wait.For() command doesn't allow.