Hello list,

I want to copy some files into a targetFolder by dragging them onto a dragdropArea; so I took a field with the following script:

------
on dragEnter
   set the acceptDrop to true
   pass dragEnter
end dragEnter


on dragDrop
   put "/Users/hillen/Desktop/ttt" into targetFolder
   put the dragData["files"] into FilePathList
   repeat for each line FilePath in FilePathList
     revcopyfile FilePath,TargetFolder
   end repeat
end dragDrop
------

It works, but to copy 2 files you need 25 seconds or so (MacBook Pro, 2.2 GHz, RunRev 2.8.1, built 4.7.2)

What to do?

Thank you for your hints.
Richard.
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to