|
-
Buttons for Copy to/from clipboard
How to make buttons for copy and paste text in clipboard with Kollmoves(using actionscript)?
-
That web bloke
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.
-
That web bloke
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|