Flash:allow smoothing - always on
Flash:allow smoothing - always on
Out of context: Reply #5
- Started
- Last post
- 9 Responses
- Pupsipu0
it's not a hack, it's something you do in actionscript. Depending on how you're organizing your project and file, you could just use a loop to go through all the images in the library or on the stage and say image1.allowSmoothing = true, image2.allowSmoothing = true
for (i = 0; i<numOfImages; i++){ images[i].allowSmoothing = true } if you reference all the images from the library with the images[] array.
pretty normal stuff when coding.