home *** CD-ROM | disk | FTP | other *** search
/ PCMania 14 / Pcmania_Ep2_14_CD-ART_Futura_2000.iso / Datos / menu.dir / 00036.ls < prev    next >
Encoding:
Text File  |  2000-11-15  |  269 b   |  19 lines

  1. on mouseEnter
  2.   sprite(64).visible = 1
  3.   updateStage()
  4. end
  5.  
  6. on mouseLeave
  7.   sprite(64).visible = 0
  8.   updateStage()
  9. end
  10.  
  11. on mouseDown
  12.   set the soundLevel to 1
  13.   puppetSound("transi")
  14.   repeat with i = 60 to 66
  15.     sprite(i).visible = 0
  16.   end repeat
  17.   updateStage()
  18. end
  19.