Looping a sequence of movies

    <smil  xmlns:qt="http://www.apple.com/quicktime/resources/smilextensions"
qt:autoplay="true" qt:fullscreen="full">
        <head>
            <layout>
                <root-layout id="rl" width="1280" height="768"
background-color="black" />
                <region id="video" width="1280" height="768" left="0"
top="0" />
            </layout>
        </head>
        <body>
            <seq repeatCount="indefinite">
                <video src="movie1.mov" region="video"/>
                <video src="movie2.mov" region="video"/>
                <video src="movie3.mov" region="video"/>
            </seq>
        </body>
    </smil>

My problem is the <<repeatCount="indefinite">> for the sequence portion of
this script doesn't loop for me. QuickTime plays the sequence, stops at the
end of the last movie (movie3.mov) and falls out of the fullscreen mode,
then stops.

Any help would be appreciated.
-- 
View this message in context: http://www.nabble.com/Looping-a-sequence-of-movies-tf3887701.html#a11020288
Sent from the w3.org - www-smil mailing list archive at Nabble.com.

Received on Saturday, 9 June 2007 01:20:30 UTC