How to Stop Video in AS3.0

Hi, If any one can help me My major problem is How to stop video playing . example:-- I have 4 swf. and one main file. in which all 4 swf is loading when I click on relevant link. but when I click on video(btn). the video.swf is loaded. in this file everything is fine. like when I click on other video thumb. the sound is stop by using:-- player.stopVideo() method. But when I go in another page by clicking on other btns. the page is loading. but video is not stopped. Means in background the video is playing. For this I used a function named stopVideo in main file. but it didn’t work. here is the code:-- function vdoStop(e:MouseEvent) { MovieClip(this.parent.parent).movie_loader.holder.player.stopVideo(); } b2.buttonMode=true; b2.addEventListener(MouseEvent.CLICK, vdoStop); note:-- movie_loader is empty movieClip in which the swf is loading. and holder is in video file. so I am trying to access the property of the video file from the main file. This method works fine in AS2.0 using _parent._parent But didn’t work in AS 3.0. I am really fighting with this problem and yet didn’t get solution.