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

  1. on mouseUp
  2.   if the machineType = 256 then
  3.     go(the netpage, "http://www.quicktime.com")
  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.     go(the netpage, "http://www.quicktime.com")
  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.