Hi, I would have no problem doing this the old fashioned way, but for some client-requested reason it has to be in AS3. Here’s what I have:
var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest(“movie.swf”);
myLoader.load(url);
//Fade-in 9 seconds
TransitionManager.start(myLoader, {type:Fade, direction:Transition.IN, duration:9, easing:Strong.easeOut});
Apparantly, myLoader isn’t the instance name of the loded swf. I have no idea what it is though. Can someone help me? Thanks!