<body>

Availability

Flash Professional 8.

Usage

<body>
...
child tags
...
</body>

Attributes

None.

Child tags

<video>, <ref>, <switch>

Parent tag

<smil>

Description

Contains the <video>, <ref>, and <switch> tags, which specify the name of the source FLV file, the minimum bandwidth, and the duration of the FLV file. The system-bitrate attribute is supported only when using the <switch> tag. Within the <body> tag, only one instance of either <switch>, <video>, or <ref> tags is allowed.

Example

The following example specified three FLV files, two using the video tag, and one using the ref tag:

<body>
    <switch>
        <video src="myvideo_mdm.flv" system-bitrate="56000"  dur="3:00.1">
        <video src="myvideo_isdn.flv" system-bitrate="128000" dur="3:00.1">
        <ref src="myvideo_cable.flv" dur="3:00.1"/>
    </switch>
</body>