views:

60

answers:

1

How do I set the depth of different images in ActionScript?

+1  A: 

If you are referring depth as in the position of the image in it's parent's display list, checkout setChildIndex() and swapChildren() methods of the DisplayObjectContainer class.

Amarghosh