Allow smoothing for dynamically loaded image

Hi all

in flash there is a setting to ‘allow smoothing’ for images that are imported. how can i do this in AS3 so that the images i dynamically load are smoothed (because when i scale them they look bad).

thanks

[quote=seanrock;2309274]solution:

in the loader complete event handler:

var bit:Bitmap = evt.target.content;
if(bit != null)
bit.smoothing = true;
addChild(loader);

works for me.[/quote]

Hi

I am a flash newbie and have same problem as you did, how do i correctly implement this piece of code to allow smoothing of my images being pulled in via XML?

thanks