Re: [SMIL] A question

Hello,

I also agree with Sjoerd Mullender. The code

<seq repeat="3" begin="3s">
 <img src="foo1" dur="4s" region="reg1" />
 <img src="foo2" dur="4s" region="reg2" />
</seq>

should be equivalent to TIMELINE 2

>                  1    1    2    2    3
>         ....5....0....5....0....5....0
> seq        [------][------][------]
> foo1       ****    ****    ****
> foo2           ****    ****    ****
> 

and the code 

<seq repeat="3">
 <img src="foo1" dur="4s" region="reg1" begin="3s"/>
 <img src="foo2" dur="4s" region="reg2" />
</seq>

should be equivalent to TIMELINE 1

>                  1    1    2    2    3
>         ....5....0....5....0....5....0
> seq        [------]   [------]   [------]
> foo1       ****       ****       ****
> foo2           ****       ****       ****
> 

If not, they would have the same meaning, wouldn't they? How the author would 
specify the behavior of TIMELINE 2?

Regards,

Debora C. Muchaluat Saade
HyperProp Project
PUC-Rio, Brazil

Received on Thursday, 29 April 1999 11:24:05 UTC