VideoError.NO_CUE_POINT_MATCH

Availability

Flash Player 8.

Edition

Flash Professional 8.

Usage

mx.video.VideoError.NO_CUE_POINT_MATCH

Description

A value of 1001, indicating that no matching cue point was found.

Example

The following code checks for the NO_CUE_POINT_MATCH error code:

import mx.video.*;

try {
    ...
} catch (err:VideoError) {

if (err.code == NO_CUE_POINT_MATCH) {
        ...
    }

}

See also

FLVPlayback.findCuePoint()