The Alert method shows a popup message on the screen which stays on screen until
the user presses the Ok button or back button.
app.Alert( text, title );
Example - No Title
function OnStart()
{
app.Alert( "Hello World!" );
}
Example - Title
function OnStart()
{
app.Alert( "Hello World!", "Message" );
}