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

  1. on maccopyLogo
  2.   global name_logo, logoPath
  3.   openXLib(":Xtras:macxtra:filextra")
  4.   set fileName to the pathName & logoPath & name_logo
  5.   if fileName > EMPTY then
  6.     set loc to "desktop folder:"
  7.     set wFileName to FileSaveAsDialog(loc, name_logo, "Save As")
  8.     if wFileName > EMPTY then
  9.       set result to CopyFile(fileName, wFileName)
  10.     end if
  11.   end if
  12.   closeXLib(":Xtras:macxtra:filextra")
  13. end
  14.