<smil>

Availability

Flash Professional 8.

Usage

<smil>
...
child tags
...
</smil>

Attributes

None.

Child tags

<head>, <body>

Parent tag

None.

Description

Top-level tag, which identifies a SMIL file.

Example

The following example shows a SMIL file specifying three FLV files:

<smil>
    <head>
        <meta base="rtmp://myserver/myapp/" />
        <layout>
            <root-layout width="240" height="180" />
        </layout>
    </head>
    <body>
        <switch>
                <ref src="myvideo_cable.flv" dur="3:00.1"/>
                <video src="myvideo_isdn.flv" system-bitrate="128000" dur="3:00.1"/>
                <video src="myvideo_mdm.flv" system-bitrate="56000"  dur="3:00.1"/>
            </switch>
    </body>
</smil>