How to comunicate between MC?

i have a flash movie and in the primary time line (“home” scene) i have placed a MC (stz2). inside this MC i’ve put a button with this action

“on (release) {
gotoAndStop(“home”, 14);
}”.
But he go to 14° frame of stz2’timeline!!!
How MCs can comunicate between them self?

If the button in “stz2” want to load an external .swf (for the same problem above) what can i do? i made this:

on (release) {
_root.createEmptyMovieClip(“container”, 1);
loadMovie(“tec.swf”, “container”);
container._x = 0;
container._y = 390;
}

HELP ME PLEASE!!!

excuse me 4 my english…

Assuming you want to goto frame 14 in the main timeline, this would help:

on (release) {
_root.gotoAndStop(14);
}

h88