It seems that this line "set(plugin[invisible].visible, false);" don't work after flash update.
Quoted
<plugin name="invisible" type="container" bgcolor="0xffffff" bgalpha="0.001" bgcapture="true" width="100%" height="100%" keep="true" handcursor="false" onclick="hideintroimage();" zorder="1"/>
<action name="hideintroimage" keep="true">
set(plugin[invisible].visible, false);
tween(plugin[introimage].alpha, 0.0, 0.3, default, removeplugin(introimage));
</action>
<action name="showintroimage" keep="true">
addplugin(introimage);
set(plugin[introimage].url, interface/intro.jpg);
set(plugin[introimage].align, center);
set(plugin[introimage].height, prop);
set(plugin[introimage].width, 45%);
set(plugin[introimage].alpha, 0);
set(plugin[introimage].handcursor, false);
set(plugin[introimage].onclick, hideintroimage() );
tween(plugin[introimage].alpha, 0.7, 0.4);
set(plugin[invisible].visible, true);
</action>
This post has been edited 1 times, last edit by "Largo" (Apr 12th 2014, 2:31pm)
So, on the start of pano plugin[photo_fon] is visible, and autoalpha don't work.If I set it to visible="false" it works fine. In previous versions of flash all work fine.
Quoted
<plugin name="photo_fon" type="container" bgalpha="0" alpha="0" autoalpha="true" width="100%" height="100%" keep="true" zorder="1" bgcapture="true" handcursor="false" />
http://test.photo-largo.lclients.ru/G8good/
Quoted
<plugin name="photo_fon" type="container" bgalpha="0" autoalpha="true" alpha="0" width="100%" height="100%" keep="true" zorder="1" bgcapture="true" handcursor="false" />
Quoted
<plugin name="photo_fon" type="container" bgalpha="0" alpha="0" width="100%" height="100%" keep="true" zorder="1" bgcapture="true" handcursor="false" visible="false" />