Hi guys,
Does anybody know how to make this work? I am making a player and I would need to show “buffering” when the buffer is empty. That’s not a big deal by
if(data.code == "NetStream.Buffer.Empty"){
//show text
}
if(data.code == "NetStream.Buffer.Full"){
//hide text
}
Everything works as it should. The problem is the seeking. As soon as the user moves the playhead of the flv player to the end of the loaded part of the movie (if the movie is not loaded completely, of course), it stops, begins to buffer, but no message is shown. NetStreem.Buffer.Empty doesn’t work in this case. Any ideas how to make a workaround? All help greatly appreciated! Thanks!
Poco