[Q] SyncBaseTime propagation??

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
	<head>
		<layout>
			<root-layout width="400" height="300"/>
			<region id="r1" left="0" top="0" width="200" height="150" backgroundColor="green"  />
			<region id="r2" left="200" top="0" width="200" height="150" backgroundColor="red" fit="meet" />
			<region id="r3" left="0" top="150" width="200" height="150" backgroundColor="yellow" fit="slice"/>
			<region id="r4" left="200" top="150" width="200" height="150" backgroundColor="blue" fit="fill" />
		</layout>
	</head>
<body>
   <par>
      <seq>
           <par endsync="all">
         	<img region="r1" id="A" src="A.jpg" begin="C.activateEvent" end="10s" />	
           </par>
           <img region="r3" id="B" src="B.jpg" begin="0s" dur="5s" />
       </seq>
       <img region="r2" id="C" src="C.jpg" begin="0s" dur="indefinite" />
       <img region="r4" id="D" src="D.jpg" begin="A.end" dur="indefinite" />
    </par>
</body>
</smil>

Q1. Can "D" begin at 10s without "C.activateEvent"(ie, C is not clicked)?

Q2. If C is not clicked, can B begin at 10s? (I think Q1 and Q2 are identical)



<par dur="20s">
         	<img region="r1" id="A" src="A.jpg" begin="C.activateEvent" end="10s" />
</par>
Q3. In above case, can A begin after 10s if C is clicked in between 10s and 20s?

Received on Wednesday, 25 September 2002 21:25:46 UTC