A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Buttons for Copy to/from clipboard

  1. #1
    Junior Member
    Join Date
    Aug 2008
    Posts
    2

    Buttons for Copy to/from clipboard

    How to make buttons for copy and paste text in clipboard with Kollmoves(using actionscript)?

  2. #2
    That web bloke Stoke Laurie's Avatar
    Join Date
    Jan 2006
    Location
    England
    Posts
    869
    Sorry, can you just explain a bit more fully what you want to do?

  3. #3
    Junior Member
    Join Date
    Aug 2008
    Posts
    2
    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.

  4. #4

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center