Hi guys I am trying to load an external swf file. The swf width and height is small and I want to enlarge it when loading it. (My scene has large width and height). My current code could load the file but I am not sure how to enlarge the swf width and height. I would appreciate if anyone can help me about it...Thanks
var request:URLRequest = new URLRequest("index.swf");
var loader:Loader = new Loader()
loader.load(request);
addChild(loader);