Does anyone have a solution for this?
I am testing out streaming some flv files using flashcom.
When you use movie.setBufferTime() and bufferLength reaches zero, the video will start to buffer again. However, when bufferLength = bufferTime again, and the video starts to play,it seeks ahead the amount of time it took to rebuffer.
eg.
movie.bufferTime is 10 seconds
and movie.bufferLength == 0 @ movie.time == 20
the video buffers til movie.bufferLength == 10...
if it takes 15 seconds for this to happen, the video resumes at movie.time ==35
I have tried pausing the video while it buffers, but the built in handling for buffering seems to override this...
Maybe im not doing this properly, so if anyone else has overcome this difficulty i would be glad to know.

R