How to make buttons for copy and paste text in clipboard with Kollmoves(using actionscript)?
Printable View
How to make buttons for copy and paste text in clipboard with Kollmoves(using actionscript)?
Sorry, can you just explain a bit more fully what you want to do?
Thanks for your attention.
Well, in runtime (executing a swf), I have a text in the DinamicText and I need to place in the Clipboard. This is simple with Control+C but, I need this command inside a button with caption 'Copy to clipboard' . The same with another button with Control+V and caption 'Paste from clipboard'.
In PHP is like this:
on(release)
{
Selection.setFocus("_root.txt1");
this.onEnterFrame = function()
{
System.setClipboard(_root.txt1);
};
}
But in Actionscrip I don't know how make this.
http://www.actionscript.org/actionsc...&submit=SEARCH
that should do the trick
cheers