MessageShows a message box. This command displays a simple message box with your message and records the user response as a variable value. Description Optionally, you may add comments here describing the purpose of this element.
Type Choose the type of the message. Information - Information message. Warning - Warning message. Error - Error message. Question - Question message.
Caption You may specify a custom caption for the message box. The default caption is the same as dialogs.
Text Enter the text of the message here.
Buttons You can select a custom combination of the buttons.
Result Variable Specify any variable name here if you wish to know what the button a user pressed. Later, you can use this macro in other commands. Possible values: $IDOK, $IDCANCEL, $IDABORT, $IDRETRY, $IDIGNORE, $IDYES, $IDNO. For example ( using in Source Code )
if macrox_getint("mymess") == $IDYES
{
$body$
}
Run Body If You can add any commands inside Message command. The inner commands of the Message command will run if a user pressed this defined button. By default, the body runs if a user has pressed Yes in Question message and OK in other messages.
|