LargeMsgBox

Introduced

v5.0

Description

LargeMsgBox is similar to XSIUIToolkit.MsgBox, but it is designed for larger, multi-line messages. For example, this could be used to show simple help text, or the results of a batch output process. The message is always shown with OK and Cancel buttons.

This command is implemented using JScript and the Softimage SDK so its functionality can easily be adapted for your own custom commands.

Scripting Syntax

oReturn = LargeMsgBox( Text, [Title] );

Return Value

Returns true if the user clicked the "OK" button, or false for the "Cancel" button.

Parameters

Parameter Type Description
Text String Text to show in the edit box of the text message
Title String Title for the dialog box

Default Value: "Info"

See Also

XSIUIToolkit.MsgBox