(2012-03-14 19:40)matt77303 Wrote: Thanks mate.
working ok now, could never get it to work before.
i can see the menu for about a second before it plays any way round that?
Matt
here's a minimal Startup.xml for Confluence that will delay the loading of the home screen by 1 second.
you can adjust the value (it's in milliseconds) of the delay to your own liking.
Code:
<window>
<onload>PlayMedia(special://skin/introMovie.mov)</onload>
<defaultcontrol always="true">10</defaultcontrol>
<allowoverlay>no</allowoverlay>
<controls>
<control type="button" id="10">
<onfocus>ReplaceWindow(Home)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
<animation effect="fade" delay="1000" end="100">Focus</animation>
</control>
</controls>
</window>