"link href" issue

I created a simple disc with markup only, 3 markups. I want to jump to another page by

<cue begin="//button[@id='b2' and state:actioned()=true()]" end="//button[@id='b2' and state:actioned()=false()]">

<link href="url('file:///dvddisc/ADV_OBJ/assets.aca/screen_2.xmu')"/>

</cue>

But, at the bottom of ihdsim, it said,

"Line: -1 Column: -1 (null): Markup: MCP::_LoadMemoryBlock: Required file not in resource cache: file:///dvddisc/ADV_OBJ/assets.ac....."

Is the uri wrong or something else?

[1271 byte] By [ZhengLu] at [2008-1-27]
# 1

Hi,

The URI format you are using is for backgroundImage (which is borrowed from CSS). The <link> element just takes a normal URI:

<cue begin="id('b2')[state:actioned()]" end="defaultNode()[state:actioned()=false()]">
<
link href="file:///dvddisc/ADV_OBJ/newpage.xmu" />
</
cue>

Also, you need to make sure the new file is in your resource cache. It looks like you are putting everything in an ACA though, so it won't be a problem if the ACA is already in the cache.

PeterTorr-MSFT at 2007-9-10 > top of Msdn Tech,Audio and Video Development,HD DVD Interactivity Authoring...
# 2
Thank you.
ZhengLu at 2007-9-10 > top of Msdn Tech,Audio and Video Development,HD DVD Interactivity Authoring...