Hello
I am trying to create a duplicate movie, swap depths with the original and then destroy the copy in a loaded swf clip.
**this.ffx_mc.onRelease = function() {
duplicateMovieClip(ffx_mc, “ffx_dbl”, 4);
ffx_dbl.swapDepths(ffx_mc);
ffx_mc.gotoAndPlay("_end");
}
**
is the code for when the person clicks on the button. The reason I dup and swap is to make sure that the clip is on top. The user is sent to another map, which they can return from to this original movie. When they click on the ffx_mc clip a second time, it freezes and no longer appears with the hand on Mouseover. Any clues as to how this is functioning, and why it doesn’t repeat would be greatly appreciated.