Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a as3 project, a magazine like project. I have like 10 pages, and some of those pages, has a FLVPlayback component to stream flv videoes. I have one problem, and it goes like this:

When i enter a frame, with a FLVPlayback component and start playing the video, everything works fine. But when i then switch to another page, the video file keeps playing in the background.

Is this a common problem ?

Thanks in advance!

share|improve this question

1 Answer

Yes, FLVPlayback component keeps playing until you call stop(). It's not enough to remove it from the display list.

share|improve this answer
At the moment, im asking on behalf of the action script man, Ill forward the answer to him, and come back if it solve his problem :) – mnstrflkrn Nov 21 '11 at 9:15
You have to actively call stop() on the FLVPlayback component. For example you can do that in an Event.REMOVED_FROM_STAGE listener. If you just remove it from the displaylist, it will continue playling, like @DanielB said. It will stop eventually, when the GC collects it, but you never can tell when this will happen. – Malyngo Dec 6 '11 at 16:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.