ActionScript 2.0 Components Language Reference |
|
|
|
| FLVPlayback Component > VideoError class > VideoError.ILLEGAL_CUE_POINT | |||
Flash Player 8.
Flash Professional 8.
mx.video.VideoError.ILLEGAL_CUE_POINT
A value of 1002, indicating an invalid cue point was found.
The following code checks for the ILLEGAL_CUE_POINT error code:
try {
...
} catch (err:VideoError) {
if (err.code == ILLEGAL_CUE_POINT) {
...
}
}
|
|
|
|