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