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