Controlling a MC from another MC?

I’ve got two Movie Clips “MC1” & “MC2” on my main timeline with buttons that give them life so if i click on “MC1” then it plays the open and stops on the “up” frame the next frame in the movie is the “out” which plays the Movie Clip out. but when “MC1” is up and you click on “MC2” i want “MC1” to play the out frame.

I’m guessing at this but is this anywhere close?
this is the code attached to the button inside of “MC2”

on (release) {

	if ( _root.MC1 = ("up")) 
{ 
	      _root.MC1.gotoAndPlay("out");
 
} 
	gotoAndPlay("in");
}