ActionScript 2.0 Components Language Reference |
|
|
|
| FLVPlayback Component > VideoError class > VideoError.code | |||
Flash Player 8.
Flash Professional 8.
mx.video.VideoError.code
The numeric code that identifies the error condition.
The following example displays the error condition in the Output panel:
import mx.video.*;
try {
...
} catch (err:VideoError) {
trace ("Error code is: " + err.code)
...
}
|
|
|
|