Hello, I have found similar problems on other posts, but none of the solutions were working for me.

I am creating a flash video in which a video will play on the main screen. I also want a button to go to another page with information and links(morePage). I have all that worked out, but when I click the button to go morePage, the video can still be heard in the background. Any advice on stopping, pausing, or even just muting the video would be great. Thanks and I've included the relevant code below

more.addEventListener(MouseEvent.CLICK, gotoMorePage);

function gotoMorePage(event:MouseEvent):void{
gotoAndStop(5);
}