Back

Alert

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!" );
}
  Copy   Copy All    Run   

Example - Title

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