home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 176 / MF_UK_176_1.iso / Files / Scenes / disclaimer.dir / 00005_goto_home.ls next >
Encoding:
Text File  |  2006-10-18  |  286 b   |  22 lines

  1. property Sp
  2. global gRootPath, dv
  3.  
  4. on beginSprite me
  5.   Sp = sprite(me.spriteNum)
  6.   Sp.blend = 70
  7. end
  8.  
  9. on mouseEnter me
  10.   cursor(280)
  11.   Sp.blend = 100
  12. end
  13.  
  14. on mouseLeave me
  15.   cursor(-1)
  16.   Sp.blend = 70
  17. end
  18.  
  19. on mouseUp me
  20.   go(1, gRootPath & "Files" & dv & "Scenes" & dv & "home.dir")
  21. end
  22.