Hi there!
I have a problem with my moviceClipLoader. It loads the external swf file OK, but it is not the correct size. I want to load the swf, so it remains this size:
http://www.renslip.dk/renslipgallery.html
But, when I load into my main flash movie, it is this size:
http://www.renslip.dk/renslipgallery.swf
What seems to be the problem?
Here’s my actionscript for my movieClipLoader:
// MOVIECLIPLOADER //
var mc_holder:MovieClip = this.createEmptyMovieClip("mc_holder", this.getNextHighestDepth)
var swf_mcl:MovieClipLoader = new MovieClipLoader();
var mclListener:Object = new Object();
swf_mcl.addListener(mclListener);
swf_mcl.loadClip(swf, mc_holder);
function loadMySwf(swf:String){
swf_mcl.addListener(mclListener);
swf_mcl.loadClip(swf, mc_holder);
mc_holder._x = 180;
mc_holder._y = 95;
}
Hope you guys can solve my problem, thx!