stretching an dynamically imported image in a bound mc
Hi all,
I am importing an image dynamically with following code into my mc :
....
var urlRequest5=new URLRequest( ... );
var imageLoader5=new Loader();
imageLoader5.load(urlRequest5);
smaglabel.addChild(imageLoader5);
.....
the code above is working properly but the image is not imported within the box i created. It aligns whatever it's size is. For example, i create a small box and a bit skewed, but the image is shown as big (original) size.
How can i stretch it in my designed mc?
Thanks for all help...