I need the background.swf to scale to the screen,
but I would like one movieClip on the background not to scale.
I add a dontScale_mc on the stage and tried to add this to frame 1 on background.swf
loadMovie("myNoScaleMovie.swf", dontScale_mc);
but it doesnt work. I also tried...
var my_mcl:MovieClipLoader = new MovieClipLoader();
this.createEmptyMovieClip("clip1_mc", this.getNextHighestDepth());
clip1_mc._x = 600;
clip1_mc._y = 500;
my_mcl.loadClip("myNoScaleMovie.swf", clip1_mc);
Both load when I publish background.fla, but not when x2 loads it.
Any suggestions?
Thanks!
Rich