User Guide

VideoError class 701
Example
The following code checks for the DELETE_DEFAULT_PLAYER error code:
import mx.video.*;
try {
...
} catch (err:VideoError) {
if (err.code == DELETE_DEFAULT_PLAYER) {
...
}
}
See also
FLVPlayback.activeVideoPlayerIndex
VideoError.ILLEGAL_CUE_POINT
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
mx.video.VideoError.ILLEGAL_CUE_POINT
Description
A value of 1002, indicating an invalid cue point was found.
Example
The following code checks for the ILLEGAL_CUE_POINT error code:
try {
...
} catch (err:VideoError) {
if (err.code == ILLEGAL_CUE_POINT) {
...
}
}
See also
FLVPlayback.cuePoint