How to define the region in the mms smil

How to define the region in the mms smil SearchSearch
Author Message
Anonymous
 
Posted on Wednesday, November 12, 2003 - 03:46 am:   

i wanna know how to define the slide's postion in the mms smil, any insights / suggestions are welcome
Vitaliy N. Kravchenko
New member
Username: Kvn

Post Number: 7
Registered: 10-2003
Posted on Wednesday, November 12, 2003 - 08:13 am:   

I think you have to read http://www.w3.org/TR/REC-smil/
Anonymous
 
Posted on Wednesday, November 12, 2003 - 08:35 am:   

it's too many to read , in a mobile terminal , it's not possible implement all the w3c smil specifications.
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 1126
Registered: 10-2002
Posted on Thursday, November 13, 2003 - 08:35 pm:   

I don't necessarily understand the specifics of the question, but here's some sample SMIL generated by a message sent from a Panasonic GD87 which might help you.

<smil>
<head>
<meta name="title" content="smil"/>
<meta name="author" content="PANASONIC"/>
<layout>
<root-layout background-color="#FFFFFF" width="132" height="176"/>
<region id="Image" width="132" height="100" left="0" top="0" fit="meet"/>
<region id="Text" width="132" height="34" left="0" top="100" fit="scroll"/>
</layout>
</head>
<body>
<par dur="1000ms">
<img src="img00.jpg" region="Image"/>
</par>
<par dur="1000ms">
<img src="img01.jpg" region="Image"/>
</par>
<par dur="1000ms">
<img src="img02.jpg" region="Image"/>
</par>
<par dur="1000ms">
<img src="img03.jpg" region="Image"/>
</par>
<par dur="22000ms">
<img src="img04.jpg" region="Image"/>
<text src="txt04.txt" region="Text">
<param name="foreground-color" value="#0000F8"/>
</text>
<audio src="aud04.amr"/>
</par>
</body>
</smil>