1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<action name="showhotspots">
tween(hotspot[hs1].fillalpha,0.1,0.2);
tween(hotspot[hs1].borderwidth,4,0.2);
tween(hotspot[hs1].borderalpha,0.8,0.2);
tween(hotspot[hs2].fillalpha,0.1,0.2);
tween(hotspot[hs2].borderwidth,4,0.2);
tween(hotspot[hs2].borderalpha,0.8,0.2);
tween(hotspot[hs3].fillalpha,0.1,0.2);
tween(hotspot[hs3].borderwidth,4,0.2);
tween(hotspot[hs3].borderalpha,0.8,0.2);
</action>
|