User Guide

700 FLVPlayback Component (Flash Professional Only)
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)
...
}
VideoError.DELETE_DEFAULT_PLAYER
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
mx.video.VideoError.DELETE_DEFAULT_PLAYER
Description
A value of 1007, which occurs if you call the FLVPlayback.closeVideoPlayer() method to
attempt to close the default video player (number 0). You cannot delete the default
video player.