navigating from mc, back out and back into a different movieclip.
This must be pretty simple, but im having trouble.
I have a movieClip on the main timeline called mcFlyouts. inside is a flyout button called btnAV which when pressed needs to navigate back out of mcFlyouts and into another movieClip on the main timeline called mc_HomeLayout ---> to frame labeled "audio_fm".
i tried using the following code, but its not doing anything, or even giving me an output error.
this code is inside of mcFlyouts.
btn_AV.addEventListener(MouseEvent.CLICK, btnAV1);
function btnAV1(event:MouseEvent):void
{
MovieClip(parent).mc_HomeLayout.gotoAndStop("audio_fm");
}
any suggestions?