ResultVariable
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
See also: Related Actions
Debug.SetTraceMode
OverviewExamples
Debug.SetTraceMode ( boolean Enable = true )
De s cr ip t ion
Turns debug trace mode on or off.
When trace mode is on, every line of code will be traced out to the debug window, and the last error code will be printed after each action is performed.
P arame t er s
Enable
(boolean) Whether to turn trace mode on or off:
VALUE DESCRIPTION |
|
true |
Turn trace mode on. (Default) |
false |
Turn trace mode off. |
Re t u r n s
Nothing.
See also: Related Actions
Debug.ShowWindow
OverviewExamples
Debug.ShowWindow ( boolean Show )
De s cr ip t ion
Shows or hides the debug window.
P arame t er s
Show
(boolean) Whether to show or hide the debug window:
VALUE DESCRIPTION |
|
true |
Show the window. (default) |
false |
Hide the window. |
Re t u r n s
Nothing.
See also: Related Actions
D i a l og
Dialog.ComboBox
OverviewExamples
string Dialog.ComboBox ( string Title,
string Prompt, table Items, string DefaultItem,
boolean SortItems = false,
boolean Editable = false,
number Icon = MB_ICONQUESTION )
De s cr ip t ion
Presents a dialog box with a combo box control on it.
P arame t er s
Title
(string) The text to be displayed on the title bar of the dialog.