AS3: Copy text to clipboard
Categories: ActionScript3
A useful little snippet of code for when you want to copy text to the clipboard:
System.setClipboard(source.text);
Where source is the id of e.g. a text field.
Categories: ActionScript3
A useful little snippet of code for when you want to copy text to the clipboard:
System.setClipboard(source.text);
Where source is the id of e.g. a text field.
No comments yet.