Back

SetAutoStart

Hello World

Set a DroidScript project name which will be launched automatically when DroidScript starts.

app.SetAutoStart( appName )

See Also: SetSharedApp

Example - Auto Start 'Hello World'

function OnStart()
{
    app.SetAutoBoot( "Hello World" );
    app.ShowPopup( "You may now restart DroidScript." );
}
Copy All       Run      
string