toggleHighQuality()

Availability

Flash Lite 1.0.

Usage

toggleHighQuality()

Operands

None.

Description

Function; turns anti-aliasing on and off in Flash Lite. Anti-aliasing smooths the edges of objects but slows down SWF file playback. This function affects all SWF files in Flash Lite.

Example

The following code could be applied to a button that when clicked, would toggle anti-aliasing on and off:

on(release) {
    toggleHighQuality();
}