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?
| |||
|
feedback
|
|
Look at Here's a quick function that will let you place something at the highest depth:
| |||||||||||||||
feedback
|
|
To control the z-order of the displayObjects use setChildIndex(). Lowest indexed children are displayed at the bottom. To change the zorder of the children, use setChildIndex, to illustrate:
| |||
|
feedback
|
|
There are even more options than only setting the 'z-index', you have full control on the layers:
Gets an object from certain index
Gets a index from certain object
Adds a object on top (addChild) or at certain index (addChildAt)
Swap objects with eachother of by its 'z-index' | |||
feedback
|