Hello,
what I did to address iPad videos, is to call a video previously through a hotspot or plugin:
|
Quellcode
|
1
2
3
|
<action name="play">
plugin[video].playvideo('videos/test.mp4');
</action>
|
For your graphic stuff, something like this:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
|
<action name="play">
plugin[video].playvideo('videos/test.mp4');
delayedcall(1,fadegraphic());
</action>
<action name="fadegraphic">
tween(plugin[graphic].alpha,0,0.5,easeoutquad, set(plugin[graphic].visible,false););
set(plugin[graphic].enabled,false);
</action>
|
Best regards.