Flash 8 Documentation |
|||
| ActionScript 2.0 Language Reference > ActionScript language elements > Global Properties > _quality property | |||
_quality:String
Sets or retrieves the rendering quality used for a movie clip. Device fonts are always aliased and therefore are unaffected by the _quality property.
The _quality property can be set to the values described in the following table.
|
Value |
Description |
Graphic Anti-Aliasing |
Bitmap Smoothing |
|---|---|---|---|
|
" |
Low rendering quality. |
Graphics are not anti-aliased. |
Bitmaps are not smoothed. |
|
" |
Medium rendering quality. This setting is suitable for movies that do not contain text. |
Graphics are anti-aliased using a 2 x 2 pixel grid. |
Flash Player 8: Bitmaps are smoothed based on the Flash Player 6 and 7: Bitmaps are not smoothed. |
|
" |
High rendering quality. This setting is the default rendering quality setting that Flash uses. |
Graphics are anti-aliased using a 4 x 4 pixel grid. |
Flash Player 8: Bitmaps are smoothed based on the Flash Player 6 and 7: Bitmaps are smoothed if the movie clip is static. |
|
" |
Very high rendering quality. |
Graphics are anti-aliased using a 4 x 4 pixel grid. |
Flash Player 8: Bitmaps are smoothed based on the Flash Player 6 and 7: Bitmaps are always smoothed. |
Availability: ActionScript 1.0; Flash Player 5
The following example sets the rendering quality to LOW:
_quality = "LOW";
Version 8