I’ve got a MediaDisplay object in my project that seems to be working fine, until I pause and the re-start the playing. When I restart the playing, the “complete” event fires immediately, only I know I’m not at the end of my .flv.
m_listener.complete = function (p_event_obj){
trace("complete: " + p_event_obj.target.totalTime + " " + p_event_obj.target.playheadTime);
};
clip_movie.addEventListener(“complete”,m_listener);
In the trace window I’m getting “complete: 6.734 1.358”, so I’m sure I’m not at the end.
Anyone know why this might be happening? I’m working with the previous developer’s code, so I’m still wading my way through it, but maybe there’s a way to force an event to trigger artificially? I don’t know of a way, but it was another idea.
thanks in advance.
Bebeth