User Guide

598 FLVPlayback Component (Flash Professional Only)
Drag an FLVPlayback component to the Stage, and give it an instance name of
my_FLVPlybk. Then add the following code to the Actions panel on Frame 1 of the
Timeline:
/**
Requires:
- FLVPlayback component on the Stage with an instance name of my_FLVPlybk
*/
import mx.video.*;
my_FLVPlybk.maintainAspectRatio = false;
my_FLVPlybk.width = 300;
my_FLVPlybk.height = 350;
my_FLVPlybk.contentPath = "http://www.helpexamples.com/flash/video/
water.flv";
See also
FLVPlayback.preferredHeight, FLVPlayback.preferredWidth,
FLVPlayback.maintainAspectRatio, FLVPlayback.resize, FLVPlayback.setSize(),
FLVPlayback.width
FLVPlayback.idleTimeout
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
my_FLVPlybk.idleTimeout
Description
Property; the amount of time, in milliseconds, before Flash terminates an idle connection to a
FCS because playing paused or stopped. This property has no effect on an FLV file
downloading over HTTP.
If this property is set when a video stream is already idle, it restarts the timeout period with
the new value.
The default value is 300,000, or 5 minutes.