ActionScript 2.0 Language Reference |
|
|
|
| ActionScript language elements > Global Functions > toggleHighQuality function | |||
toggleHighQuality()
Deprecated since Flash Player 5. This function was deprecated in favor of _quality.
Turns anti-aliasing on and off in Flash Player. Anti-aliasing smooths the edges of objects and slows down SWF playback. This action affects all SWF files in Flash Player.
Availability: ActionScript 1.0; Flash Player 2
The following code could be applied to a button that, when clicked, would toggle anti-aliasing on and off:
on(release) {
toggleHighQuality();
}
_highquality property, _quality property
|
|
|
|