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

  1. on xtracopyabout
  2.   global name_abouttxt, abouttxtPath
  3.   set name_abouttxt to the name of member the member of sprite 3
  4.   put name_abouttxt
  5.   if the platform contains "Mac" then
  6.     maccopyabout()
  7.   else
  8.     openXLib("Xtras\filecopy")
  9.     set fileName to the pathName & abouttxtPath & name_abouttxt
  10.     if fileName > EMPTY then
  11.       set wFileName to doSaveAsDlg(the pathName & abouttxtPath & name_abouttxt, "Word@*.rtf")
  12.       if wFileName > EMPTY then
  13.         set result to CopyFile(wFileName, fileName)
  14.         put result
  15.       end if
  16.     end if
  17.     closeXLib("Xtras\filecopy")
  18.   end if
  19. end
  20.