I'm working on a project where we have artists importing movieclips and bitmaps to the library via. flash, and sometimes i'm accessing a movieclip with multiple bitmap children. I need to access and scale all kinds of bitmaps from all kinds of places in my code.
I know i can set the smoothing of a bitmap by accessing myBitmap.smoothing
, but i would like to have a global value that could be set so that the smoothing was true by default, and not false.
I've been looking at the documentation for bitmaps, but it doesn't say anything about any global values that can be set with this.
So my main question: Do any of you know of a way to enable smoothing for all bitmaps i work with, so i won't have to set it for each bitmap i add?