VideoError.INVALID_SEEK

Availability

Flash Player 8.

Edition

Flash Professional 8.

Usage

mx.video.VideoError.INVALID_SEEK

Description

A value of 1003, indicating an invalid seek was attempted.

Example

The following code checks for the INVALID_SEEK error code:

import mx.video.*;

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

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

}

See also

FLVPlayback.seek()