Show a simple popup message box
Display a simple message box with a specified message and optional caption. The box contains a single OK button.
number queryBox ( string message, string caption )Show a simple Yes/No query box
Displays a query box with a specified message and an optional caption. The box contains Yes and a Cancel buttons; the result is non-zero if the user clicks the Yes button.
string promptBox ( string message, string default, string caption )Show a simple prompt box
Displays a prompt with a specified message, an optional caption and a text entry control; the text entry control initially contains the default value is one is specified. The prompt also shows an OK and a Cancel button. If OK is clicked then the result is the contents of the text entry; otherwise the result is None.
string choiceBox ( string message, list entries, string caption )Show a popup with selection combobox
void logscript ( string message )
Write message to script log window