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
|
<style name="button"
url="plugins/textfield.swf"
keep="true"
children="false"
height="22"
onloaded="set(alpha,0); set(textblur,15); set(blur,15); tween(alpha,1.0,0.3); tween(textblur,0,0.3); tween(blur,0,0.3);"
onover="tween(alpha,0.7,distance(0.3,0.2));"
onout="tween(alpha,1.0,distance(0.3,0.2));"
autosize="none"
css="p{color:#FFFFFF; font-family:Arial; font-size:14; margin-left:5; margin-right:5; text-align:center; }"
background="true" backgroundcolor="0x000000"
bordercolor="0" borderwidth="0"
blur="0"
glow="4"
glowcolor="16777215"
roundedge="5"
shadow="1"
textblur="0" textglow="0" textglowcolor="16777215" textshadow="0"
/>
<plugin name="fullscreen_button"
style="button"
align="leftbottom" x="30" y="30" width="120"
html="[p]Fullscreen[/p]"
onclick="switch(fullscreen); if(fullscreen, set(html,[p]Exit Fullscreen[/p]), set(html,[p]Fullscreen[/p]));"
/>
<plugin name="autorotation_button"
style="button"
align="rightbottom" x="30" y="30" width="120"
html="[p]Autorotate[/p]"
onclick="switch(autorotate.enabled); if(autorotate.enabled, set(html,[p]Autorotate OFF[/p]), set(html,[p]Autorotate[/p]));"
/>
|