home *** CD-ROM | disk | FTP | other *** search
- function saveFile()
- {
- _level0.rc = "?";
- fscommand("ARG","_level0.rc");
- fscommand("ARG",_root.nomearquivo);
- fscommand("ARG","Salvar arquivo");
- fscommand("ARG","c:\\");
- fscommand("ARG","|*.*||");
- fscommand("FILESYS2.FILESAVE");
- saveInterval = setInterval(function()
- {
- if(_level0.rc != "?")
- {
- copyFile(_level0.rc);
- clearInterval(saveInterval);
- }
- }
- ,50);
- }
- function copyFile(destination)
- {
- _root.set_teste = _level0.ssStartDir + _root.caminho + _root.nomearquivo;
- _level0.result = "?";
- fscommand("Arg","_level0.result");
- fscommand("ARG",_level0.ssStartDir + _root.caminho + _root.nomearquivo);
- fscommand("ARG",_level0.rc);
- fscommand("Arg","FALSE");
- fscommand("FILESYS2.COPYFILE");
- copyInterval = setInterval(function()
- {
- if(_level0.result != "?")
- {
- clearInterval(copyInterval);
- }
- }
- ,50);
- }
-