: Your problem is that, even though you are adding the loader to the parent imageViewer_mc movieclip, the loader will not have the same size as its parent. You can set the width and height
Your problem is that, even though you are adding the loader to the parent imageViewer_mc movieclip, the loader will not have the same size as its parent.
You can set the width and height of the loaded image as follows:
var loader:Loader =new Loader();
imageViewer_mc.addChild(loader);
loader.load(new URLRequest("image2.jpg"));
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, function(){
loader.content.width = 200;
loader.content.height = 400;
});
A graphic-based solution, to a different effect, would be to simply crop the image with a layer mask. (New Layer, Right-Click Mask, Unlock, Draw shape to crop within it).
More posts by @Mendez620
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.