Maybe I am missing something here. But what I am trying to do is cause a swf to advance one frame after an FLVPlayback component is finished playing the movie. What is happening is, well, nothing. The movie plays just fine. I have added some test code:
import mx.video.FLVPlayback;
var clip:FLVPlayback;
function finishedClip()
{
trace(‘finished’);
}
clip.addEventListener(“complete”, finishedClip());
the FLVPlayer is labled clip. As soon as I publish the swf, it will trace ‘finished’. I have tried other events such as stop, playing, ready… they all trace at the load of the swf and not when the event is happening. It looks as though nothing knows what the FLVPlayer is doing. If anyone has any clue as to what is going on here, Please let me know. Thnx!!
AC