FVplayer component sound problem - Please help

Hi,

I was trying to load two flv files into the same FLVPlayback component and using two buttons switch from one video to another. I was using the activeVideoPlayerIndex and visibleVideoPlayerIndex. I am successful in doing that but once I switch from one video to another the sound from the video stops. The buttons mutebutton and volumebar retain their status.

The code I am using -

function runVideo1(event:MouseEvent) {
event.target.visible=false;
Video1_mc.visible=true;
Video_flvplayer.pause();
Video_flvplayer.activeVideoPlayerIndex =0;
Video_flvplayer.visibleVideoPlayerIndex =0;
Video_flvplayer.play();
Video_flvplayer.volume=1;
}
function runVideo2(event:MouseEvent) {
event.target.visible=false;
Video2_mc.visible=true;
Video_flvplayer.pause();
Video_flvplayer.activeVideoPlayerIndex =1;
Video_flvplayer.visibleVideoPlayerIndex =1;
Video_flvplayer.play();
Video_flvplayer.volume=1;
}
Video1_mc.addEventListener(MouseEvent.CLICK, runVideo2);
Video2_mc.addEventListener(MouseEvent.CLICK, runVideo1);
Video_flvplayer.load(this.VideoURL1);
Video_flvplayer.load(this.VideoURL2);
Video_flvplayer.activeVideoPlayerIndex =1;
Video_flvplayer.visibleVideoPlayerIndex =1;
Video_flvplayer.play();

Please Help.