Here are is my movie I want to toggle. The second movie clip is called within the first movie clip. That is
Actionscript Code:
this.attachMovie("BubbleMC","popBBL",this.getNextHighestDepth());
is being called within the clip
Actionscript Code:
this.attachMovie("TwitterWidget", "twitterMC", this.getNextHighestDepth());
. Here are the clips I am trying to toggle gotoAndPlay.

Code:
bubble_mc.base_mc.gotoAndPlay("Black");
bubble_mc.arrow_mc.gotoAndPlay("Black");
Code:
bubble_mc.base_mc
and
Code:
bubble_mc.arrow_mc
are in the clip
Actionscript Code:
this.attachMovie("BubbleMC","popBBL",this.getNextHighestDepth());

Keep in mind that
Actionscript Code:
this.attachMovie("TwitterWidget", "twitterMC", this.getNextHighestDepth());
comes before
Actionscript Code:
this.attachMovie("BubbleMC","popBBL",this.getNextHighestDepth());
.

Here is the way I have placed the codes, but this does not seem to work. Please HELP.

Code:
twitterMC.popBBL.bubble_mc.base_mc.gotoAndPlay("Black");
twitterMC.popBBL.bubble_mc.arrow_mc.gotoAndPlay("Black");