Previous frame without resetting
As2
How do you go back to a previous labeled frame and have that fame the same as you left it without it resetting that frame.
I really want the x y positions of a MovieClip to stay where I moved the MovieClip to previously so I can go back to it.
These did not work because of resetting.
_root.prevFrame();
_root.gotoAndStop("here");
_root.gotoAndPlay("here");
I could only pick one place and not what I wanted.
_root.mc._x=224.9;
_root.mc._y=124.5;
I been stuck on this for a long time and would really appreciate some help on this.