One pretty annoying error that i encountered in Flash was with #1003. Now, what i wanted to do was to loop my video between cuepoints, so i used flvBCK.seekToNavCuePoint('loopstart'), but each time this was called i got #1003 error: VideoError: 1003: Invalid seek at fl.video::FLVPlayback/seekToNavCuePoint() Tested same piece of code in new FLA and everything worked. To mention i had 2 different files where they all had same name, but not the same extension. One of the media files were F4V and the other one FLV. My mistake was that i linked FLVPlayback to F4V file and those dont support navigation cuePoints. BUT, one important thing to point out, it seemes you still CAN embed cuePoints in  F4V files, but as event cuePoints. So if you set eventListener to FLVPlayback then you should get  cuePoints traced out but you can not navigate to them. So to save few minutes in your work and not to make same mistake, look carefully that you set source to right file ;) More
2011-05-15