VideoError.NO_CONNECTION

Availability

Flash Player 8.

Edition

Flash Professional 8.

Usage

mx.video.VideoError.NO_CONNECTION

Description

A value of 1000, indicating the method cannot connect to the server or find the FLV file on the server.

Example

The following code checks for the NO_CONNECTION error code:

import mx.video.*;

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

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

}