import java.awt.datatransfer.StringSelection; static S copyTextToClipboard(O _text) { S text = str(_text); StringSelection selection = new StringSelection(text); Toolkit.getDefaultToolkit().getSystemClipboard().setContents(selection, selection); vmBus_send('newClipboardContents, text); ret text; }