home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #13 / CD 13 (Black) - 2001.iso / K-CS.DCR / 00142_Hilite, toggle by mouse.ls < prev    next >
Encoding:
Text File  |  2001-08-24  |  1013 b   |  35 lines

  1. property ItemState
  2.  
  3. on new me
  4.   getPropertyDescriptionList()
  5.   set the visible of sprite the currentSpriteNum to 1
  6.   set the visible of sprite (the currentSpriteNum + 1) to 0
  7.   set the visible of sprite (the currentSpriteNum + 2) to 0
  8.   set the visible of sprite (the currentSpriteNum + 3) to ItemState
  9. end
  10.  
  11. on mouseEnter me
  12.   set the visible of sprite (the currentSpriteNum + 1) to 1
  13. end
  14.  
  15. on mouseLeave me
  16.   set the visible of sprite (the currentSpriteNum + 1) to 0
  17. end
  18.  
  19. on mouseDown
  20. end
  21.  
  22. on mouseUp
  23.   set Seen to the visible of sprite (the currentSpriteNum + 3)
  24.   set the visible of sprite (the currentSpriteNum + 3) to 1 - Seen
  25. end
  26.  
  27. on getBehaviorDescription
  28.   return "Hilite two fields for descriptions. Third field is intended for a toggling bitmap (checkboxes and such). The paramitra is 1 for default on, 0 for default off."
  29. end
  30.  
  31. on getPropertyDescriptionList
  32.   set p_list to [#ItemState: [#default: ItemState, #format: #integer, #comment: "Initial state", #range: [#min: 0, #max: 1]]]
  33.   return p_list
  34. end
  35.