home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / intro.dir / 00020_MiddleButton.ls < prev    next >
Encoding:
Text File  |  2000-08-10  |  384 b   |  18 lines

  1. on mouseUp
  2.   if the machineType = 256 then
  3.     open(the moviePath & "winsoft\utilities\quicktime\QuickTime 3 Installer.exe")
  4.     repeat with x = 1 to 120
  5.       set the puppet of sprite x to 0
  6.     end repeat
  7.     updateStage()
  8.     quit()
  9.   else
  10.     open("1qt3")
  11.     repeat with x = 1 to 120
  12.       set the puppet of sprite x to 0
  13.     end repeat
  14.     updateStage()
  15.     quit()
  16.   end if
  17. end
  18.