Hi there,
I wonder if any of you out there can help with this. Im relatively new to AS and especially AS3. I have loaded an flv into my main stage movie using an external call to load the flv.
However once the flv video file is finished i need to call yet another external swf file to play.
I’ve called the flv file (which is in labs_clip.swf) from my main movie by using this…
stop()
var myrequest:URLRequest=new URLRequest(“labs_clip.swf”);
var myloader:Loader=new Loader();
myloader.load(myrequest);
function swfLoaded(myevent:Event):void{
stage.addChild(myloader);
var mycontent:MovieClip=myevent.target.content;
mycontent.x=0;
mycontent.y=30;
}
myloader.contentLoaderInfo.addEventListener(Event.COMPLETE, swfLoaded);
Can anyone help I have to have this done by Monday…no pressure then : )
Thanks in advance