mc_1.gotoAndPlay(mc_2._currentframe)? AS2/CS4

Right, I’m basically making a animation of someone breathing, with multiple layers. What I want to happen when a user clicks the animation is for it to switch to the next layer seamlessly (skin>muscles>skeleton). Each layer has the same 60 frames. For example, if the skin layer’s currentframe was ‘37’ i’d want the muscle layer to start at ‘38’ when clicked.

Below is some of the code I already have. I can trace the currentframe of the original mc, however the attached movieclip refuses to gotoAndPlay to that number?

HELP! :frowning:

var b:MovieClip = this.breathing_skin_btn

this.breathing_skin_btn.onPress = function(){
trace(b._currentframe)
attachMovie(“breathing_muscle”, “breathing_muscle_btn”,1);
breathing_muscle_btn.gotoAndPlay(b._currentframe);
removeMovieClip(“breathing_skin_btn”);
}