Back

GetOptions

Hello World

Returns all current app objects.

app.GetOptions() → string: comma “,” separated: “Portrait”, “Landscape”, “NoDom”, “Game”, “Remote”, “Transparent”

If ran from inside DroidScript, “remote” is the default value.

See Also: SetOptions

Example - Show App Options

cfg.No_Dom, cfg.Portrait;

function OnStart()
{
    var opt = app.GetOptions();
    app.Alert( opt );
}
Copy All       Run