Skip to content

show_message_ext

CryoEagle edited this page Jan 6, 2019 · 1 revision

show_message_ext

shows popup message like show_message() but with more options

Syntax:

show_message_ext(str, caption, buttonType)
Argument Description
string str message to popup
string caption caption of window
MessageBoxButtons buttonType type of button ( or buttons )

Returns: string

Description:

This function will popup message like show_message(); but this function have more options, caption of window and type of button.

Example:

show_message_ext("Hello im your window","Window Bob", MessageBoxButtons.YesNoCancel);

The above code will popup message „Hello im your window“ and set caption of window „Window Bob“ and show buttons Yes, No, Cancel.

Back to Debug

Clone this wiki locally