home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 May / CHIPCD5_98.iso / software / testsoft / carr / 10LAT.CST / 00420_Script_s_tipshow < prev    next >
Text File  |  1998-01-28  |  559b  |  33 lines

  1. property  spr
  2.  
  3. on mouseEnter me
  4.   global hp
  5.   set hp=1
  6.   init me
  7. end
  8.  
  9. on mouseLeave me
  10.   global hp
  11.   set hp=0
  12.   init me
  13. end
  14.  
  15. on init me
  16.   global hp
  17.   if hp=0 then set the visible of sprite spr to FALSE
  18.   if hp=1 then set the visible of sprite spr to TRUE
  19. end
  20.  
  21. --
  22.  
  23. on getPropertyDescriptionList
  24.   set description = [:]
  25.   addProp     description,#spr,[#default:0,#format:#integer,#comment:"Tip on sprite:"]
  26.   return description
  27. end
  28.  
  29. on getBehaviorDescription
  30.   return "Po wejsciu na sprite'a pokazuje go. Po wyjsciu chowa."
  31. end
  32.  
  33.