|
|||
|
Is it possible for SWfkit to create a command which can Copy and Paste text directly to e.g. a PowerPoint/Word doc or similar at the press of a button without letting users having to do a Ctrl V?
something like this Code:
on (release){
System.setClipboard("some text");
}
|
|
|||
|
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";
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|