VideoError.INVALID_CONTENT_PATH

Availability

Flash Player 8.

Edition

Flash Professional 8.

Usage

mx.video.VideoError.INVALID_CONTENT_PATH

Description

A value of 1004, indicating an invalid contentPath value was found.

Example

The following code checks for the INVALID_CONTENT_PATH error code:

import mx.video.*;

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

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

See also

FLVPlayback.contentPath