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
39
40
41
42
43
44
45
46
47
48
49
50
|
<hotspot name="hs1" style="hs-animate"
ath="-30" atv="0" keep="true" devices="all"
onhover=""
onclick=""
/>
<style name="hs-animate"
url="posibilidades/imag/ojos-tira300.png"
crop="0|0|300|300"
keep="true"
zorder="99"
scale="1"
align="center"
framewidth="300"
frameheight="300"
frame="0"
lastframe="23"
onloaded="hs_animate();" />
<action name="hs_animate">
inc(frame,1,get(lastframe),0);
mul(xpos,frame,framewidht);
txtadd(crop,'0|',get(xpos),'|',get(framewidth),'|',get(frameheight));
delayedcall(0.1, if(loaded, hs_animate() ) );
</action>
<hotspot name="vs1" style="vs-animate"
ath="30" atv="0" keep="true" devices="all"
onhover=""
onclick=""
/>
<style name="vs-animate"
url="posibilidades/imag/tiradados1.png"
crop="0|0|130|1230"
keep="true"
zorder="99"
scale="1"
align="center"
framewidth="130"
frameheight="130"
frame="0"
lastframe="15"
onloaded="vs_animate();" />
<action name="vs_animate">
inc(frame,1,get(lastframe),0);
mul(ypos,frame,frameheight);
txtadd(crop,'0|',get(ypos),'|',get(framewidth),'|',get(frameheight));
delayedcall(0.1, if(loaded, vs_animate() ) );
</action>
|