AS3 Image Loader Smoothing

March 21, 2010

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;

0 Comments

Leave a Comment