Reputation: 469
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
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