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
|
<data name="defaultcss">a { text-decoration:underline; color:#110088; font-weight:bold; } a:hover { color:#885500; }</data>
<data name="html_flower">
<p align="left">
<img src="flower.jpg" />
<font face="arial" size="+4">
<textformat leftmargin="10" rightmargin="10">
<br />
<b>Flower</b>
<br />
<br />
flower sth blabla
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<a href="event:action(hidetextfield,flower);">close</a>
</textformat>
</font>
</p>
</data>
<action name="showtextfield">tween(plugin[%1].alpha,0,0); set(plugin[%1].alpha,0); tween(plugin[%1].textblur,20,0); set(plugin[%1].textblur,20); tween(plugin[%1].blur,20,0); set(plugin[%1].blur,20); set(plugin[%1].enabled,true); set(plugin[%1].visible,true); tween(plugin[%1].alpha, 1, 0.25); tween(plugin[%1].textblur, 0, 0.25); tween(plugin[%1].blur, 0, 0.25);</action>
<action name="hidetextfield">set(plugin[%1].enabled, false); tween(plugin[%1].alpha, 0, 0.25, default, plugin[%1].set(visible,false)); tween(plugin[%1].textblur, 20, 0.25, default); tween(plugin[%1].blur, 20, 0.25, default);</action>
<plugin name="flower" visible="false" url="%SWFPATH%/plugins/textfield.swf" align="center" width="600" height="420" html="data:html_flower" css="data:defaultcss" background="true" />
|