ActionScript 2.0 Components Language Reference |
|
|
|
| FLVPlayback Component > VideoError class > VideoError.NO_BITRATE_MATCH | |||
Flash Player 8.
Flash Professional 8.
mx.video.VideoError.NO_BITRATE_MATCH
A value of 1006, which indicates that there is no default FLV file listed that matches any bit rate. Occurs only when downloading and parsing a SMIL file. For more information, see Using a SMIL file.
The following code checks for the NO_BITRATE_MATCH error code:
import mx.video.*;
try {
...
} catch (err:VideoError) {
if (err.code == NO_BITRATE_MATCH) {
...
}
}
|
|
|
|