===== GetClipboardText =====
//(Information and examples taken from the DroidScript documentation)//
==== Description ====
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 );
}