Back

GetIPAddress

The GetIPAddress method returns the network address of your device. (If WiFi is enabled)

 app.GetIPAddress();

Example

function OnStart()
{
  ip = app.GetIPAddress();
  app.ShowPopup( ip );
}
  Copy   Copy All    Run