|
Watch.SleepPauses the process for the specified number of milliseconds. This can be used while waiting for something else to happen when the delay is known. SyntaxWatch.Sleep Milliseconds: integer ExampleIn the following example, sleep() pauses the process for 1 second (1000 milliseconds) VBScriptWatch.Sleep 1000 JavaScriptWatch.Sleep(1000); PythonWatch.Sleep(1000) Perl$Watch->Sleep(1000); |
|