home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 193 / MF_UK_193_1.iso / pc / Files / Scenes / HOME.DIR / Internal_17_Website_Button.ls < prev    next >
Encoding:
Text File  |  2008-02-06  |  293 b   |  21 lines

  1. property Sp
  2.  
  3. on mouseEnter me
  4.   cursor(280)
  5.   Sp.color = rgb(255, 255, 255)
  6. end
  7.  
  8. on mouseLeave me
  9.   cursor(-1)
  10.   Sp.color = rgb(162, 219, 246)
  11. end
  12.  
  13. on beginSprite me
  14.   Sp = sprite(me.spriteNum)
  15.   Sp.color = rgb(162, 219, 246)
  16. end
  17.  
  18. on mouseUp me
  19.   gotoNetPage("http://www.macformat.co.uk")
  20. end
  21.