Transitioning Through External SWF's

I have recently made the switch to Actionscript 3.0. I am slowly, but getting the hang on of it. I am re designing my portfolio in AS3.0 as a form a practice. On my previous portfolio I transitioned through external SWF’s using this method posted on Kirupa.

http://www.kirupa.com/developer/mx2004/transitions2.htm

It worked great and was not hard to do at all. After about a month of looking on the web for a tutorial and reading through several books I have yet to find something that shows how to transition through SWF’s using AS3.0. Can anyone point me in the right direction whether it be tips, or full tutorials on how to accomplish my goal?

Thanks,

RyuuJin

I also have the same problem. It has slowed my project down. Someone need to post a solution for this.

var imageReq1:URLRequest = new URLRequest(“w1.swf”);
var imageReq2:URLRequest = new URLRequest(“w2.swf”);
var imageReq3:URLRequest = new URLRequest(“w3.swf”);
var imageLoader:Loader = new Loader();
imageLoader.load(imageReq1);
container_mc.addChild(imageLoader);

btn1_btn.addEventListener(MouseEvent.CLICK, btn1_click);
btn1_btn.buttonMode=true;

btn2_btn.addEventListener(MouseEvent.CLICK, btn2_click);
btn2_btn.buttonMode=true;

bt3_btn.addEventListener(MouseEvent.CLICK, btn3click);
btn3_btn.buttonMode=true;

function btn1_click(event:MouseEvent):void{
imageLoader.load(imageReq1);
container_mc.addChild(imageLoader);
}

function btn2_click(event:MouseEvent):void{
imageLoader.load(imageReq2);
container_mc.addChild(imageLoader);
}

function btn3_click(event:MouseEvent):void{
imageLoader.load(imageReq3);
container_mc.addChild(imageLoader);
}