Smil calling Smil indefinetly, please help

Hi,
I need to repeat a seq indefinetly but everytime the seq re-plays, i 
need to be able to change it without having to stop and start the player.
I thougth i could do this by having a smil calling another smil 
indefinetly and where the child smil was dynamically created every time.
My problem is that the repeat indefinite on the parent smil seems not to 
work.
I've tried with  <seq repeat="indefinite">, with <seq 
repeatCount="indefinite"> and with  <seq repeatDur="indefinite"> but no 
luck.

Please help

Thanks

SMILTEST.SMI

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
    <head>
        <layout>
            <root-layout width="852" height="480"/>
            <region left="1" top="1" id="region2" />
        </layout>
    </head>
    <body>
        <seq repeat="indefinite">
            <ref src="smil.smi" region="region2" fit="fill" />
        </seq>
    </body>
</smil>

SMIL.SMI

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
    <head>
        <layout>
            <root-layout width="852" height="480"/>
            <region left="1" top="1" id="region1" 
backgroundColor="#ffffff"/>
        </layout>
    </head>
    <body>
        <seq>
            <ref src="chttp://192.168.1.13:20099/images/smil/bilbao.jpg" 
region="region1" dur="3s" />
            <ref 
src="chttp://192.168.1.13:20099/images/smil/mainsales.swf" 
region="region1"  />
            <ref 
src="chttp://192.168.1.13:20099/images/smil/sale1day.swf" 
region="region1" />
        </seq>
    </body>
</smil>

Received on Friday, 3 January 2003 12:10:12 UTC