Back

GetDeviceId

JS Py
Hello World

Returns the alphanumeric ID of the device which is different for each device.

app.GetDeviceId() → String

Example - Show Devide ID

function OnStart()
{
    var id = app.GetDeviceId();
    app.Alert( id );
}
def OnStart():
    id = app.GetDeviceId()
    app.Alert( id )
    Copy     Copy All       Run