Reputation: 4410
If I removeChild frame animated Movieclip, will it automatically stop running the frames inside it? Actually without calling mc.stop();
Upvotes: 1
Views: 406
Reputation: 13151
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.
Upvotes: 1
Reputation: 4782
No. The timeline will still play, and all the framescripts you might have in there will still be called. Beware of the timeline devils :)
Upvotes: 1