Apr
7
2008
AS3 Snippet #1: Copy text to clipboard
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.
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.