I trying to debug a small problem. I cannot get the animation to activate. I'm missing something simple.
MARKUP
< xml version="1.0" >
<root xml:lang="en" xmlns="http://www.dvdforum.org/2005/ihd"
xmlns:state="http://www.dvdforum.org/2005/ihd#state"
xmlns:style="http://www.dvdforum.org/2005/ihd#style"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.dvdforum.org/2005/ihd http://www.dvdforum.org/2005/ihd/iHD.xsd">
<head>
<styling>
<style id="BACKGROUND" style:position="absolute" style:backgroundFrame="0"
style:backgroundImage="url('bg_main.jpg')"
style:x="0px" style:y="0px"
style:width="1920px" style:height="1080px" />
<style id="MAIN_MENU" style:position="absolute"
style:x="0px" style:y="0px" style:width="450px" style:height="1080px"
style:backgroundImage="url('bg_menu.png')" />
</styling>
<timing clock="page">
<defs>
<!-- Effects for opening and closing main menu. -->
<g id="OpenMenu">
<animate style:x="0px;450px" />
</g>
</defs>
<par>
<par begin="id('BTN_MENU')[state:actioned()]"
end="id('BTNMENU2')[state:actioned()]">
<cue select="id('MAIN_MENU')" dur="1s" fill="hold" use="OpenMenu" />
</par>
</par>
</timing>
</head>
<body>
<!-- Static Background -->
<div style="BACKGROUND" id="BG" style:display="auto">
</div>
<!-- Slide Menu -->
<div style="MAIN_MENU" id="MENU">
</div>
<!-- Hidden button for toggling Main Menu. -->
<div>
<button id="BTN_MENU" accessKey="VK_MENU" />
<button id="BTN_MENU2" accessKey="VK_0" />
</div>
</body>
</root>
PLAYLIST
<Playlist majorVersion="1" minorVersion="0"
xmlns="http://www.dvdforum.org/2005/HDDVDVideo/Playlist"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.dvdforum.org/2005/HDDVDVideo/Playlist http://www.dvdforum.org/2005/HDDVDVideo/Playlist/Playlist.xsd">
<Configuration>
<StreamingBuffer size="0"/>
<Aperture size="1920x1080"/>
<MainVideoDefaultColor color="107F7F" />
</Configuration>
<MediaAttributeList>
<AudioAttributeItem index="1" codec="AC-3" />
</MediaAttributeList>
<TitleSet timeBase="60fps" tickBase="24fps" defaultLanguage="en" >
<Title id="audio1" titleNumber="1" titleDuration="00:10:00:00" displayName="Track1" onEnd="audio1">
<!--
<PrimaryAudioVideoClip titleTimeBegin="00:00:00:00" titleTimeEnd="00:10:00:00" src="file:///dvddisc/HVDVD_TS/093624946663_00001_192.MAP">
<Audio track="1" streamNumber="1" mediaAttr="1" />
</PrimaryAudioVideoClip>
-->
</Title>
<!-- Playlist Advanced Application provides the menu and slideshow for all Titles -->
<PlaylistApplication src="file:///dvddisc/ADV_OBJ/main.aca/comp5.xmf" language="en" >
<PlaylistApplicationResource src="file:///dvddisc/ADV_OBJ/main.aca" size="30000000" multiplexed="1" />
</PlaylistApplication>
</TitleSet>
</Playlist>

Debug Help with Simple Animation
Spanglishone
<PlaylistApplication src="file:///dvddisc/ADV_OBJ/main.aca/comp5.xmf" language="en" >
shouldnt be there ...maybe thats it...I know none of my titles havelanguage specific aplications
mrobold
Will, are you using Sonic Sorry I can't remember from past conversation if you are or not. If you are, their previewer prior to version 4.1 did not properly support playlist applications.
The more apparent problem I see is that the multiplexed flag on the playlist application resource should be set to false. It would only be a number if it was multiplexed in a first play title.
Gurpreet Singh Gill
I'm just using the iHDValidator. I changed the flag to false. Still no worky. Odd. This is so simple.
I have been using much more complex sliding elements in many other projects. The only difference is this is the first in a PlaylistApplication. Hmmm.
DigitalPenguin
<cue select="id('MAIN_MENU')" dur="1s" fill="hold" use="OpenMenu" />
should read
<cue select="id('MENU')" dur="1s" fill="hold" use="OpenMenu" />
I knew it was something stupid :P
GTrz
I think it has something to do with the playlist application interacting with the title. This is the first time I've used a playlist application vs putting the advanced application in the title.