Back

GetClipboardText

The GetClipboardText method gets text data from the device clip board. This allows you to copy and paste text between different applications.

 app.GetClipboardText( text );

Example

function OnStart()
{
  var text = app.GetClipboardText();
  app.ShowPopup( text );
}

  Copy   Copy All    Run