Misca
Misca

Reputation: 469

Putting a movieclip as child for another movieclip

So I have the MovieClip mc1 which added to the stage (addChild) is put on top of all the layers. I actually need another movieclip to be on top of all the scene so I've created an empty movieclip with the instance name fbp, that is set on the appropriate layer, in which I want to put my mc1 movieclip. How can I get that fbp movieclip and then add mc1 as child?

Upvotes: 0

Views: 1033

Answers (1)

paddotk
paddotk

Reputation: 1437

fbp.addChild(mc1). However, you might need to make a Sprite instead of MovieClip for fbp. Not sure if it works for movieclips.

Upvotes: 3

Related Questions