1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<hotspot name="spot2" url="fyi.png" onloaded="do_crop_animation(64,64, 60);" ath="-140" atv="10" onclick="action(open,openimage);" tooltip="open closet2" />
<plugin name="openimage"
url="2.jpg"
align="center" x="10" y="10"
scale="0.6"
alpha="0"
visible="false"
onclick="action(close,get(name));"
/>
<action name="open">
set(plugin[%1].visible,true);
tween(plugin[%1].alpha,1);
</action>
<action name="close">
tween(plugin[%1].alpha,0,0.5,default, set(plugin[%1].visible,false) );
</action>
<hotspot name="spot3" url="fyi2.png" onloaded="do_crop_animation(64,64, 60);" ath="-205" atv="10" onclick="action(open,openimage);" tooltip="open closet3" />
<plugin name="openimage"
url="1.jpg"
align="center" x="10" y="10"
scale="0.6"
alpha="0"
visible="false"
onclick="action(close,get(name));"
/>
<action name="open">
set(plugin[%1].visible,true);
tween(plugin[%1].alpha,1);
</action>
<action name="close">
tween(plugin[%1].alpha,0,0.5,default, set(plugin[%1].visible,false) );
</action>
|