How to resize the external .swf files?
Hi,
Tha following code is for resizing the Movie Clips which are on Stage. But how can I resize the external .SWF files? I am laoding an external .swf file through Gallery_mc.addChild(loader);
The following code working fine for resizing the Movie Clips on Stage:
var myStage:Stage=this.stage;
myStage.scaleMode=StageScaleMode.NO_SCALE;
myStage.align=StageAlign.TOP_LEFT;
function initialDisplay(event:Event):void{
var swfWidth:int=myStage.stageWidth;
var swfHeight:int=myStage.stageHeight;
Gallery_mc.width=swfWidth;
Gallery_mc.height=swfHeight;}
addEventListener(Event:ENTER_FRAME,initialDisplay);
Please help.
Thanks.