home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 14 / CMi14.iso / pc / intro / 00020_MiddleButton.ls < prev    next >
Encoding:
Text File  |  1999-02-11  |  373 b   |  18 lines

  1. on mouseUp
  2.   if the machineType = 256 then
  3.     open(the moviePath & "winsoft\quicktime\qt32inst.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("Install QTime‚Ñ¢")
  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.