В хелпе сказано:

Код:
Each movie clip, button, and text field has a unique depth associated
with it that determines how the object appears in front of or in back
of other objects. Objects with larger values for depths appear in front.
Content created at design time (in the authoring tool) starts at depth -16383.
да и в книгах так написано, но :
есть два мувиклипа жуков, расположенных в руте, каждый жук в свою очередь состоит из двух мувиклипов "тело" и "усы", уникальных для каждого жука.

Код:
for (var sN1:String in this) {
if (this[sN1] instanceof MovieClip) {
trace("movie clip '"+this[sN1]._name+"' is at depth "+this[sN1].getDepth());
for (var sN2:String in this[sN1]) {
if (this[sN1][sN2] instanceof MovieClip) {
trace("movie clip '"+this[sN1][sN2]._name+"' is at depth "+this[sN1][sN2].getDepth());
}
}
}
}
результат выполнения в панели Output:

Код:
movie clip 'mcBug2' is at depth -16377
movie clip 'mcMoustaches2' is at depth -16381
movie clip 'mcBody2' is at depth -16383
movie clip 'mcBug1' is at depth -16383
movie clip 'mcBody1' is at depth -16379
movie clip 'mcMoustaches1' is at depth -16383
обратите внимание на 3! значения глубины -16383. Почему так?
