Answer»
- SMIL files are written using a text editor.
- A compatible SMIL player is needed such as AMBULANT Player.
- SMIL have <HEAD>, <BODY> and <layout> tags.
- <layout> tag is used specify the size and background color of the presentation.
Following code SNIPPET is an example of SMIL:
<head> <layout> <topLayout width="640px" height="480px" backgroundColor="#FFFFFF" open="whenActive" close="whenNotActive"/> </layout> </head> Following code snippet is an example of SMIL: <head> <layout> <topLayout width="640px" height="480px" backgroundColor="#FFFFFF" open="whenActive" close="whenNotActive"/> </layout> </head>
|