Posts tagged AS3
getNextHighestDepth in AS3
Apr 6th
to make the movieclip in the highest depth in actionscript2, we will use MovieClip.getNextHighestDepth,
but AS3 removed that function..
instead, we use
parent.setChildIndex(this,parent.numChildren-1);