Quality Property - MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

Example
In the following example, there is a movie clip on the Stage with the instance name
. Within that movie clip is another movie clip with an instance name
square_mc
The following ActionScript lets you modify the
) when the circle is clicked. When you are working with relative addressing (using
square_mc
instead of
_parent
_root
Actions panel at first.
this.square_mc.circle_mc.onRelease = function() {
this._parent._alpha -= 5;
};
See also
,
_root property
targetPath function

_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
The
property can be set to the following values:
_quality
Value
Description
"
"
Low rendering
LOW
quality.
"
"
Medium rendering
MEDIUM
quality. This setting is
suitable for movies
that do not contain
text.
"
"
High rendering
HIGH
quality. This setting is
the default rendering
quality setting that
Flash uses.
Availability: ActionScript 1.0; Flash Lite 2.0
Example
The following example sets the rendering quality to
_quality = "LOW";
), it might be easier to use the Insert Target Path button in the
property.
_quality
Graphic Anti-Aliasing
Graphics are not anti-
aliased.
Graphics are anti-aliased
using a 2 x 2 pixel grid.
Graphics are anti-aliased
using a 4 x 4 pixel grid.
parent instance (which is
circle_mc
Bitmap Smoothing
Bitmaps are not smoothed.
Bitmaps are not
smoothed.
Bitmaps are not
smoothed.
:
LOW
.
circle_mc
Global Properties
107

Advertisement

Table of Contents
loading

Table of Contents