Almas Adilbek
Almas Adilbek

Reputation: 4410

RemoveChild frame animated MovieClip, will stop frame running?

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

Upvotes: 1

Views: 406

Answers (2)

loxxy
loxxy

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

a--m
a--m

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

Related Questions