home *** CD-ROM | disk | FTP | other *** search
/ Buffalo Sabres 2001-2002 Promotional CD / Sabres.iso / pc / detectpc.dxr / 00023_install.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  316 b   |  14 lines

  1. global gPathDelimiter
  2.  
  3. on mouseUp me
  4.   pathToInstaller = the moviePath & "QT" & gPathDelimiter
  5.   case gPathDelimiter of
  6.     "\":
  7.       pathToInstaller = pathToInstaller & "QuickTimeInstaller.exe"
  8.     ":":
  9.       pathToInstaller = pathToInstaller & "QuickTimeInstaller"
  10.   end case
  11.   open(pathToInstaller)
  12.   quit()
  13. end
  14.