The Problem: Turning on smoothing for an image that has been dynamically loaded using Loader
A Solution: After the image has finished loading, use the following code to smooth the image.
var image:Bitmap=Bitmap(myLoader.content);
image.smoothing=true;