DroidScript wiki

(was AndroidScript) unofficial documentation by the community

User Tools

Site Tools


Sidebar

News

Version1.42 is out since December 2nd 2016


Frequently Asked Questions


Namespaces

Note for contributors

If you wish to create a new page in the DroidScript wiki, please click on the most appropriate namespace above and follow the notes for contributors there.

Because of spam, it has been necessary to add a CAPTCHA to the registration form and the save option for editing pages. You will not need to prove you are human if you are logged in, so please register.

Please feel free to improve any existing page, as well as adding new pages to increase the sum of public knowledge about DroidScript.

Formatting Syntax

built_in:alert

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" );
}
built_in/alert.txt · Last modified: 2016/11/07 21:15 by stevegarman