Gets text that was copied to the clipboard.
System
getClipboardText |
None
None
string
Any text that was copied onto the system clipboard.
// Copy some text to the clipboard and then get it, verifying
// that they are the same
string $str;
copyString "Hello Shogun User";
$str = `getClipboardText`;
// Will print "Hello Shogun User"
print $str;