VideoError.code

Availability

Flash Player 8.

Edition

Flash Professional 8.

Usage

mx.video.VideoError.code

Description

The numeric code that identifies the error condition.

Example

The following example displays the error condition in the Output panel:

import mx.video.*;

try {
    ...
} catch (err:VideoError) {
    trace ("Error code is: " + err.code) 
    ...
}