Here i'm adding a movie clip on the stage.
var mc:MovieClip = new movieClip();
addChild(mc);
And here i'm fetching gif from the server and set it into a movie clip
var request:URLRequest = new URLRequest("file Path");
var player:GIFPlayer = new GIFPlayer();
player.load(request);
mc.addChild(player);
Now the problem is that i want to resize the gif width and height, but i'm not able to do it.
how to resize width and height of gif in as3?
mc.width = n
andmc.height = n
(where n = pixel size amount)? – VC.One