2019.2

Table Of Contents
enabled and you must be logged on as the same user as the PlanetPress Watch Service.
Examples
In the following example, showmessage() displays a dialog box saying test message”.
JavaScript
Watch.ShowMessage("test message");
VBScript
Watch.ShowMessage("test message")
Python
Watch.ShowMessage("test message")
Perl
$Watch->ShowMessage("test message");
Watch.Sleep
Pauses the process for the specified number of milliseconds. This can be used while waiting
for something else to happen when the delay is known.
Syntax
Watch.Sleep(milliseconds: integer)
Example
In the following example, Sleep() pauses the process for 1 second (1000 milliseconds)
JavaScript
Watch.Sleep(1000);
VBScript
Watch.Sleep 1000
Python
Watch.Sleep(1000)
Page 175