如何将影片剪辑添加到 AS3 中的索引?
我一直在尝试按顺序使用 AddChild 但它不起作用,有没有办法可以将某些对象添加到特定索引?
只需添加addChildAt (mc , index)
不只是addChild(mc)
DisplayObjectContainer 有几种方法来操作其子 z 位置:
swapChildren (child1:DisplayObject, child2:DisplayObject)
swapChildrenAt (index1:int, index2:int)
setChildIndex (child:DisplayObject, index:int)
addChildAt (child:DisplayObject, index:int)
你可以在这里找到更多信息