msgbox(message, box_title)

Description

Displays a message box with the message being the text to be displayed and box_title the string used as the message box title. This is useful for debugging LUA code to be used in eccoext when using the expression evaluation tool.
Only a single line of text can be displayed at a time.
The message box is not sizeable however the box size will be adjusted by the length of the message. It is unaffected by the length of the title.

Examples

msgbox("one","Box Title")
will display the word one in the message box having a title Box Title

for i=1,max msgbox(x[i]),"Item Text")
this will display values of x from 1 to max in a box titled Item Text