Table of Contents

GetAppName

(Information and examples taken from the DroidScript documentation)

Description

The GetAppName method gets the name of the running application.

 app.GetAppName();

Example

function OnStart()
{
  name = app.GetAppName();
  app.ShowPopup( name );
}