Skip to main content
Version: Deprecated Pages

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

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!")