===== SetClipboardText ===== //(Information and examples taken from the DroidScript documentation)// ==== Description ==== The **SetClipboardText** method puts text data on the device clip board. This allows you to copy and paste text between different applications. app.SetClipboardText( text );---- ==== Example ==== function OnStart() { app.SetClipboardText( "Sample Text" ); }