<plugin name="blurtest"
...
blur="0"
onover="tween(blur, 8, 0.5, default, null, txtadd(effect,'blur(',get(blur),')') );"
onout="tween(blur, 0, 0.5, default, null, txtadd(effect,'blur(',get(blur),')') );"
/>
Hi Klaus, this is definitely the effect I am looking for but, are you saying that there is no way to put it into an action?
EDIT:
Ok... for anyone that's interested, I've found a workaround to create the effect I was after.
Here's the code:
<action name="startup">
if(startscene === null, copy(startscene,scene[0].name));
loadscene(get(startscene), null, MERGE);
);
</action>
<action name="logo">
set(plugin[logo].visible,true);
tween(plugin[logo].alpha,1,3);
tween(view.fov,85,6);
</action>
<action name="go">
tween(plugin[logo].alpha,0,2,,
set(plugin[logo].visible,false);
set(autorotate.enabled,true)));
</action>
<plugin name="logo" url="plugins/logo.png" align="center" keep="true" visible="false" alpha="0" scale="0.5" devices="all" blur="200"
onloaded="logo();if(isdesktop,mul(scale,1.5)); tween(blur, 0, 3, default, null, txtadd(effect,'blur(',get(blur),')') );"
onclick="go(); tween(blur,200, 3, default, null, txtadd(effect,'blur(',get(blur),')') );"/>
And here's what it does:
http://www.360examples.net/jubany_2/tour.html