home *** CD-ROM | disk | FTP | other *** search
/ Games Central GT Digital… Q3 Premier Trimestre '98 / GT_DPK.ISO / pc / data / menu.dxr / 00135.ls < prev    next >
Encoding:
Text File  |  1995-08-25  |  567 b   |  20 lines

  1. on maccopypress
  2.   global presstxtPath
  3.   set name_presstxt to the name of member the member of sprite 2
  4.   openXLib(":Xtras:macxtra:filextra")
  5.   set fileName to the pathName & presstxtPath & name_presstxt
  6.   if fileName > EMPTY then
  7.     put fileName
  8.     set loc to "desktop folder:"
  9.     put loc & name_presstxt
  10.     set wFileName to FileSaveAsDialog(loc, name_presstxt, "Save As")
  11.     if wFileName > EMPTY then
  12.       put wFileName
  13.       set result to CopyFile(fileName, wFileName)
  14.       put result
  15.     end if
  16.   end if
  17.   closeXLib(":Xtras:macxtra:filextra")
  18.   abort()
  19. end
  20.