views:

22

answers:

2

If I removeChild frame animated Movieclip, will it automatically stop running the frames inside it? Actually without calling mc.stop();

A: 

No. The timeline will still play, and all the framescripts you might have in there will still be called. Beware of the timeline devils :)

dome
Thank you for detailed explanation
Almas Adilbek
+1  A: 

I believe it will continue to play, reason being your movie clip is still a flash entity not on stage( so not for you), but for flash (yes he can see all).

So once you create a new movieclip, play it... you can add or remove the running clip without stopping. Basically changing parent doesn't change the state of the mc.

loxxy
Thank you for answer
Almas Adilbek