A goodie!

any readers i posted in mx thread. got a solution to minor prob. but it seems to be limiting
heres the code for a movie clip. that intros. and if i rolled over another it would outro before the next movieclip would load.

on (press) {
if (this._currentframe == 1) {
this.play();
_root.goo();
}
}
on (press) {
if (this._currentframe == 1) {
this.play();
_root.foo();
}
}

heres the function on scene 1

function foo() {
if (_root.fab_replace._currentframe == 17) {
_root.fab_replace.play();
}
if (_root.cut_replace._currentframe == 6) {
_root.cut_replace.play();
}
}
function goo() {
if (_root.catasearch._currentframe == 10) {
_root.catasearch.play();
}
if (_root.createbox._currentframe == 10) {
_root.createbox.play();

what my problem is, is that within these movieclips i want to have buttons,
controling other movieclips. all with in the Root._functional movie clips.

}