system.gui.messageBox
note
This function was deprecated in 8.3 and replaced with system.vision.showMessage
.
This function is used in Python Scripting.
Description
Displays an informational-style message popup box to the user.
Client Permission Restrictions
This scripting function has no Client Permission restrictions.
Syntax
system.gui.messageBox(message, title)
Parameters
Type | Parameter | Description |
---|---|---|
String | message | The message to display. Will accept HTML formatting. |
String | title | A title for the message box. [optional] |
Returns
Nothing
Scope
Vision Client
Code Examples
Example #1
# Display the message Hello World! in a message box.
system.gui.messageBox("Hello World!")