Returns the email-address of the currently active user account.
app.GetUser() → String: account Email
See Also: GetAccounts
Example - Show App Path
function OnStart()
{
var usr = app.GetPath();
app.Alert( usr, "Active User:" );
}
from native import app
def OnStart():
usr = app.GetPath()
app.Alert(usr, "Active User:")