Skip to main content
Version: Deprecated Pages

system.gui.messageBox

Deprecated by system.vision variations in 8.3

This function was replaced with system.vision.showMessage.

Click here to learn more about system.vision variations.

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

TypeParameterDescription
StringmessageThe message to display. Will accept HTML formatting.
StringtitleA 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!")