home *** CD-ROM | disk | FTP | other *** search
/ LAUNCH 2 / LAUNCH.BIN / mac / TOYOTA / TOYOTA.DIR / 00088_Script_88 < prev    next >
Text File  |  1995-01-01  |  265b  |  15 lines

  1. on mouseDown
  2.   lightFlash
  3. end
  4.  
  5. on mouseUp
  6.   global gPlayBoolean, gCurrentSoundFile
  7.   global spriteClicked
  8.   if rollover(spriteClicked) and gPlayBoolean = 0 then
  9.     set gPlayBoolean = 1
  10.     mySound gCurrentSoundFile
  11.     go the frame
  12.   end if
  13.   
  14.   
  15. end