ActionScript 2.0 Components Language Reference |
|
|
|
| FLVPlayback Component > Using a SMIL file > <body> | |||
Flash Professional 8.
<body>...child tags... </body>
None.
<video>, <ref>, <switch>
<smil>
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.
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>
|
|
|
|