
Код:
mc1.onPress = function(){
trace("mc1 : "+this.getDepth());
this.swapDepths(mc2);
trace("mc1 : "+this.getDepth()+"\n-------------");
}
mc2.onPress = function(){
trace("mc2 : "+this.getDepth());
this.swapDepths(mc1);
trace("mc2 : "+this.getDepth()+"\n-------------");
}