ActionScript 2.0 Components Language Reference |
|
|
|
| FLVPlayback Component > VideoError class > VideoError.INVALID_CONTENT_PATH | |||
Flash Player 8.
Flash Professional 8.
mx.video.VideoError.INVALID_CONTENT_PATH
A value of 1004, indicating an invalid contentPath value was found.
The following code checks for the INVALID_CONTENT_PATH error code:
import mx.video.*;
try {
...
} catch (err:VideoError) {
if (err.code == INVALID_CONTENT_PATH) {
...
}
}
|
|
|
|