Hi
My problem:
I’ve got some movieclips where everytime when you click on one, that movieclip has to be send to the back.
Most logic solution is MovieClip.swapDepth(1), so you swap with the movie wich is at the lowest depth, but for one reason or another, this results in the movieclip jumping to the front.
Please can someone help me!
An examplefile is in attachment.
this is my script:
mc1.onRelease = function() {
mc1.swapDepths(1);
};
mc2.onRelease = function() {
mc2.swapDepths(1);
};
mc3.onRelease = function() {
mc3.swapDepths(1);
};