hello i'm making an swf file that will load another swf file
var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("1.swf");
myLoader.load(url);
i want to edit the main SWF dimensions to be same as the loaded one how can i do that ?