home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 163 - Disc 1 / MF_UK_163_1.iso / pc / Files / Scenes / HOME.DIR / Internal_99_ItemMenuHandler.ls < prev    next >
Encoding:
Text File  |  2005-10-20  |  342 b   |  24 lines

  1. property myPath, Sp
  2. global gActionPath
  3.  
  4. on init me, aPath
  5.   myPath = aPath
  6.   Sp = sprite(me.spriteNum)
  7. end
  8.  
  9. on mouseUp me
  10.   gActionPath = myPath
  11.   HideCompleteMenu()
  12.   GatherActions(gActionPath)
  13. end
  14.  
  15. on mouseEnter me
  16.   Sp.member.color = rgb(255, 255, 255)
  17.   cursor(280)
  18. end
  19.  
  20. on mouseLeave me
  21.   Sp.member.color = rgb(0, 0, 0)
  22.   cursor(-1)
  23. end
  24.