Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Global Functions > toggleHighQuality() | |||
Flash Lite 1.0.
toggleHighQuality()
None.
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.
The following code could be applied to a button that when clicked, would toggle anti-aliasing on and off:
on(release) {
toggleHighQuality();
}
|
|
|
|