In one service i have developed, i am sending to user MMS, which consists of 6 images, in special order. To set images in correct order, and add formatting i have used SMIL, which have worked well on the range of devices. However, seems that iPhone is not recognizing SMIL at all. Images are ordered by file name alphabetically, and what is worst - they are not displayed as single MMS message - but as 7 messages - title, and one message for one image.
Here is my smil:
<smil>
<head>
<layout>
<root-layout width="320" height="360" background-color="#FFFFFF" />
<region id="logo" width="100" height="18" left="0" top="0" background-color="#FFFFFF"/>
<region id="Text" width="320" height="342" left="0" top="25" background-color="#FFFFFF" />
<region id="Intro" background-color="#FFFFFF" fit="meet" left="38.5px" top="auto" />
<region id="Image2" background-color="#FFFFFF" fit="meet" left="38.5px" top="auto"/>
<region id="Image3" background-color="#FFFFFF" fit="meet" left="38.5px" top="auto"/>
</layout></head>
<body>
<par dur="6s">
<img src="Resized/intro1_250x360.jpg" region="Intro" />
</par>
<par dur="6s">
<img src="image2.jpg" region="Image2" />
</par>
<par dur="10s">
<img src="image3.jpg" region="Text" />
</par>
<par dur="10s">
<img src="image4.jpg" region="Text" />
</par>
<par dur="6s">
<img src="image5.jpg" region="Image3" />
</par>
<par dur="10s">
<img src="image6.jpg" region="Text" />
</par>
</body>
</smil>
Does anybody have had success with SMIL MMS messages on iPhone? Thanks