Hi,
I have loaded swf using following code,
var loader:Loader = new Loader();
loader.load(new URLRequest("XYZ.swf"));
addChild(loader);
How do I control height and width of this loaded swf.
I tried
var mc = MovieClip(loader.loaderContentInfo.content);
mc.width = 320;
mc.height = 240;
this gives null object error.