I have a container SWF that houses a loaded SWF within it . I need a button on the loaded swf to connect to the container swf and run the same function that a button on the container swf runs. This is the code pertaining to the container swf button:
private function onPauseBtnClick(event:MouseEvent):void
{
if (showPlayPauseBtn)
{
playBtn.visible = true;
pauseBtn.visible = false;
}
autoplay = false;
autoplayTimer.stop();
}
I have begun to read about and tried messing around with local connection. Can anyone help me with the script I would need on the send and receive swf? They are both AS3.
THANKS!!