Back

GetAppName

Hello World

Returns the name of the current app.

app.GetAppName() → string

Example - Show app name

function OnStart()
{
    var name = app.GetAppName();
    app.Alert( name );
}
    Copy     Copy All       Run