Thread: Clipboard
View Single Post
  #2 (permalink)  
Old 03-15-2005, 02:12 PM
SWFKit SWFKit is offline
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re:Clipboard

You can copy the text onto the clipboard, but it's a little hard to paste the text into a PowerPoint/Word doc automatically.

SWFKit pro supports drag and drop, you can let the users drag the text into the PowerPoint/Word doc.

Code:
Application.dragdrop.enable = true;
Application.dragdrop.onDragGetData = function ()
{
    return "some text";
}
Reply With Quote