gotoAndPlay HELP! with a mc button in a mc button

[URL=“http://www.kirupa.com/forum/”]Ok so I’m going crazy with creating a movie clip button inside a movie clip button.

I have it working well for [COLOR=Red]onRollover[/COLOR], but [COLOR=Red]onRollout[/COLOR]
the Header_mc looks like it is not looking at the code. It is driving
me crazy. Here is my Action Script code to control the two movieclip
buttons.

I basicly want the Header_mc to stop when over the B_photo and on
Rollout of the B_photo. I don’t know why it is not working.

Any help would be a god send. Thank you.

/--------------Photographers Button------------/

this.B_photo.onRollOver = function() {

Header_mc.gotoAndPlay("_stop");

B_photo.gotoAndPlay("_over");

}

this.B_photo.onRollOut = function() {

Header_mc.stop("_stop");

B_photo.gotoAndPlay("_out");

}

this.B_photo.onRelease = function() {

B_photo.getURL("http://www.macromedia.com", "_parent");

}

/--------------Main Header---------------------/

this.Header_mc.onRollOver = function() {

Header_mc.gotoAndPlay("_over");

}

this.Header_mc.onRollOut = function() {

Header_mc.gotoAndPlay("_out");

}

this.Header_mc.onRelease = function() {

Header_mc.gotoAndStop("_out");

}