===== Alert ===== //(Information and examples taken from the DroidScript documentation)// ==== Description ==== 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, options, hue ); options can be "NoDim" ---- ==== Example - No Title ==== function OnStart() { app.Alert( "Hello World!" ); } ==== Example - Title ==== function OnStart() { app.Alert( "Hello World!", "Message" ); }