How do you pause an FLV as soon as it loads, so that it freezes on the first frame of the movie?
I can get it to pause 3 or 4 frames after it has loaded by using the following code:
myNetStream.onStatus = function(infoObject)
{
if(infoObject.code == “NetStream.Buffer.Full”)
{
myNetStream.pause();
}
}
But with the above approach you can see the first few frames play until the buffer is full (obviously).
Does anyone have any suggestions?