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
51
52
53
54
55
56
57
58
59
60
61
|
<action name="fullscreentoggle">
if(fullscreen == true, set(fullscreen,false); fullscreen == false, set(fullscreen,true); );"
</action>
<action name="rotatetoggle">
if(autorotate == true, set(autorotate,false); autorotate == false, set(autorotate,true); );"
</action>
<plugin name="rotate"
url="aa-rotate.jpg"
keep="true"
visible="true" enabled="true" handcursor="true" capture="true" children="true"
zorder="0"
alpha="0.70" blendmode="normal"
smoothing="true"
origin="leftbottom" edge="left"
x="116" y="20"
width="" height=""
scale="1"
onloaded=""
onover="set(blendmode,normal);set(alpha,1);"
onhover=""
onout="set(blendmode,normal);set(alpha,0.7);"
ondown=""
onup=""
onclick="action(rotatetoggle);"
ox=""
oy=""
rotate="0"
/>
<plugin name="fullscreen"
url="aa-fullscreen.jpg"
keep="true"
visible="true" enabled="true" handcursor="true" capture="true" children="true"
zorder="0"
alpha="0.70" blendmode="normal"
smoothing="true"
origin="leftbottom" edge="left"
x="10" y="20"
width="" height=""
scale="1"
onloaded=""
onover="set(blendmode,normal);set(alpha,1);"
onhover=""
onout="set(blendmode,normal);set(alpha,0.7);"
ondown=""
onup=""
onclick="action(fullscreentoggle);"
ox=""
oy=""
rotate="0"
/>
<autorotate enabled ="true"
waittime="3"
accel ="1"
speed ="2"
horizon ="0"
tofov ="NaN"
/>
|