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

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