I want to control which DisplayObject is displayed on the front or on the back.
I can control that with zIndex style in css.

How can I do that in as?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Look at setChildIndex()

Here's a quick function that will let you place something at the highest depth:

function toTop(child:DisplayObject):void
{
    if(child.parent)
    {
        child.setChildIndex(
            child.parent.numChildren - 1
        );
    }
}
link|improve this answer
1  
you could remove container and just use child.parent :) – divillysausages Sep 15 '11 at 7:31
@divillysausages I like your style. – Marty Wallace Sep 15 '11 at 7:48
3  
also, if you want to put it to top, child.parent.addChild(child) will do the trick ;) – back2dos Sep 15 '11 at 7:52
Is there any way to achieve this in Flex 4.5 (which use addElement instead of addChild) ? – Harry Ninh Sep 15 '11 at 10:04
@back2dos Correct, but that example wouldn't demonstrate the use of setChildIndex very well. – Marty Wallace Sep 15 '11 at 10:16
show 1 more comment
feedback

To control the z-order of the displayObjects use setChildIndex().

Lowest indexed children are displayed at the bottom.
Highest indexed children are displayed at the top.

To change the zorder of the children, use setChildIndex, to illustrate:

var container:Sprite = new Sprite();
var child1:Sprite = new Sprite();
var child2:Sprite = new Sprite();
var child3:Sprite = new Sprite();

container.addChild(child1); // bottom 
container.addChild(child2); // middle
container.addChild(child3); // top  
container.setChildIndex(child3,0); // child3 would now be at the bottom
link|improve this answer
feedback

There are even more options than only setting the 'z-index', you have full control on the layers:

getChildAt(index:int):DisplayObject

Gets an object from certain index

getChildIndex(child:DisplayObject):int

Gets a index from certain object

addChild(child:DisplayObject):DisplayObject
addChildAt(child:DisplayObject, index:int):DisplayObject

Adds a object on top (addChild) or at certain index (addChildAt)

swapChildren(child1:DisplayObject, child2:DisplayObject):DisplayObject
swapChildrenAt(index1:int, index2:int):void

Swap objects with eachother of by its 'z-index'

link|improve this answer
Nice, I forgot and hardly use that other function 'swapChildren'. usually I am always sorting one particular item. – eLouai Sep 15 '11 at 18:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.