home *** CD-ROM | disk | FTP | other *** search
/ LAUNCH 2 / LAUNCH.BIN / mac / TOYOTA / TOYOTA.DIR / 00162_Script_162 < prev    next >
Text File  |  1995-01-01  |  342b  |  18 lines

  1. --Tacoma Global stoplight
  2. on mouseDown
  3.   lightFlash
  4. end
  5.  
  6. on mouseUp
  7.   global spriteClicked
  8.   if rollover(spriteClicked) then
  9.     repeat with n = 1 to 48
  10.       set the cursor of sprite n = 0
  11.       puppetSprite n, 0
  12.     end repeat
  13.     sound stop 1
  14.     sound stop 2
  15.     puppetTransition 9,4,4,1
  16.     go to frame "MM"
  17.   end if
  18. end