Back

Alert

Alert shows a simple text dialog with coloured separator between title and message (if the title is not deactivated with "NoTitle" option)

app.Alert( message, title, options, hue )

Example - No Title



function OnStart()
{
    app.Alert( "Hello World!" );
}
    Copy     Copy All       Run      

Example - Title



function OnStart()
{
    app.Alert( "Hello World!", "Message" );
}
    Copy     Copy All       Run      

string
string - "NoDim" or "Message" or "NoTitle"
number