home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 May
/
CHIPCD5_98.iso
/
software
/
testsoft
/
carr
/
10LAT.CST
/
00420_Script_s_tipshow
< prev
next >
Wrap
Text File
|
1998-01-28
|
559b
|
33 lines
property spr
on mouseEnter me
global hp
set hp=1
init me
end
on mouseLeave me
global hp
set hp=0
init me
end
on init me
global hp
if hp=0 then set the visible of sprite spr to FALSE
if hp=1 then set the visible of sprite spr to TRUE
end
--
on getPropertyDescriptionList
set description = [:]
addProp description,#spr,[#default:0,#format:#integer,#comment:"Tip on sprite:"]
return description
end
on getBehaviorDescription
return "Po wejsciu na sprite'a pokazuje go. Po wyjsciu chowa."
end