home *** CD-ROM | disk | FTP | other *** search
/ Roboty / ROBOTS_CD.iso / qtchecker.dxr / 00008_Buttons.ls < prev    next >
Encoding:
Text File  |  2005-04-28  |  234 b   |  22 lines

  1. property BEvent
  2.  
  3. on beginSprite
  4.   BEvent = member(the member of sprite the currentSpriteNum).name
  5. end
  6.  
  7. on mouseEnter
  8.   cursor(280)
  9. end
  10.  
  11. on mouseLeave
  12.   cursor(0)
  13. end
  14.  
  15. on endSprite
  16.   cursor(0)
  17. end
  18.  
  19. on mouseUp
  20.   ButtonEvent(BEvent)
  21. end
  22.