home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 176 / MF_UK_176_1.iso / Files / Scenes / disclaimer.dir / 00006_quit.ls < prev    next >
Encoding:
Text File  |  2006-10-18  |  211 b   |  21 lines

  1. property Sp
  2.  
  3. on beginSprite me
  4.   Sp = sprite(me.spriteNum)
  5.   Sp.blend = 70
  6. end
  7.  
  8. on mouseEnter me
  9.   cursor(280)
  10.   Sp.blend = 100
  11. end
  12.  
  13. on mouseLeave me
  14.   cursor(-1)
  15.   Sp.blend = 70
  16. end
  17.  
  18. on mouseUp me
  19.   quit()
  20. end
  21.