Back

GetMacAddress

GetMacAddress returns the alphanumeric MAC address of the device in the format of "00:00:00:00:00:00".

app.GetMacAddress() -> string

Example - Example



function OnStart()
{
    mac = app.GetMacAddress();
    app.ShowPopup( mac );
}
    Copy     Copy All       Run