|
|||
|
I'm using this code but only one of the clipboard functions work. For example, if I place the clipboard code first as below, then the getVariable won't work and vice versa. What am I doing wrong, any idea?
J Code:
Application.dragdrop.enable = true;
Application.dragdrop.onDragGetData = function ()
{
return Application.clipboard.paste();
}
{
return FlashPlayer.getVariable("_root.currentSentence");
}
|
|
|||
|
Code:
Application.dragdrop.enable = true;
Application.dragdrop.onDragGetData = function ()
{
return Application.clipboard.paste();
}
{
return FlashPlayer.getVariable("_root.currentSentence");
}
Try Code:
Application.dragdrop.enable = true;
Application.dragdrop.onDragGetData = function (){
return Application.clipboard.paste();
return FlashPlayer.getVariable("_root.currentSentence");
}
__________________
Awaiting Swf Kit V3 |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|