Loading external swfs

Ok I have spent the last few hours looking through all the posts and couldnt find an answer to my question so if its already answered please just give me the link.

Ok so I am loading in external swf’s:



var myrequest:URLRequest=new URLRequest ("home.swf");
var myloader:Loader = new Loader();
myloader.load(myrequest);


myloader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progresshandler);
function progresshandler(myevent:ProgressEvent):void {
    var myprogress:Number=myevent.target.bytesLoaded/myevent.target.bytesTotal;
    bar_mc.scaleX=myprogress;
    myTextField_txt.text = Math.round(myprogress*100)+"%"
}

myloader.contentLoaderInfo.addEventListener(Event.COMPLETE, alldone);
function alldone(myevent:Event):void {
    addChild(myloader);
    removeChild(myTextField_txt)
    removeChild(bar_mc)
}


So when I get home.swf loaded in I have a few problems. First if I test the preloader for a slower connection the flv thats on home.swf plays before its finished loading (usually 50%). Second if I code buttons on home.swf they will load in the swf fine but home.swf is still there. And I cant figure out where I am going wrong so if you can please help that would be great. My last question once that is working is how to play an animation before the next swf is loaded. For example if home.swf is loaded in when you click a button the content on home.swf is tweened off the stage and then next swf starts loading. I hope I explained myself well enough and I am sorry to be asking this question I just changed from AS2 to AS3 and its alot harder than I thought. Thanks for anyone who can help me.