View Single Post
  #4 (permalink)  
Old 07-21-2010, 02:09 PM
mc_toto mc_toto is offline
Junior Member
 
Join Date: Jun 2007
Posts: 9
Default

Hi
I bring back the file copy issue.

Is there any way to test the finish of the copying process.

Having this command f.copy(path), can i show a progress for this operation, or at least the beginning and the success of the operation?

on(release)
{
f.copy(path);

if (f.copy(path) in progress)
{
Dialogs.msgBox("copying");
} else {
Dialogs.msgBox("done");
}
}

Thanks
Reply With Quote