Alert shows a simple text dialog with coloured separator between title and message (if the title is not deactivated with "NoTitle" option)
Example - No Title
function OnStart()
{
app.Alert( "Hello World!" );
}
Example - Title
function OnStart()
{
app.Alert( "Hello World!", "Message" );
}