Help Buttons

How do i make it so when i click a button in a box, on the other side of the box make a movie clip load???

If you want to load a movie do this:


on (release) {
	loadMovieNum("blabla.swf", 0);
}

But for some reason I think you really want:


on (rollOver) {
	box.gotoAndStop(2);
}
on (rollOut) {
	box.gotoAndStop(3);
}


The last is just controlling the in and out animation of a movie clip called box