AS3: Element stays on stage after manipulating the index(depth)
- by o15a3d4l11s2
Here is the problem I have: after I change the index of one movieclip using this code
oldIndex=getChildIndex(DisplayObject(e.target));
setChildIndex(DisplayObject(e.target), numChildren - 1);
when I give the object its old index
setChildIndex(DisplayObject(e.target), oldIndex);
and go to another frame of the movie, this element I have changed the index of stays on top of all elements on the new frame.
My question is am I doing something wrong and if not, what can I do so that this element stays only in the frame it is placed.