views:

37

answers:

1

How do I change the stage quality to improve rendering performance in Flash Player AIR?

StageQuality doesn't seem to have any effect at all. Is this a known bug or am I doing something wrong?

I'm using this in the Main() app class constructor:

 stage.quality = StageQuality.LOW;

Edit: I found the answer in the Adobe Livedocs:

For content running in Adobe AIR, quality can be set to StageQuality.BEST or StageQuality.HIGH (and the default value is StageQuality.HIGH).

Attempting to set it to another value has no effect (and the property remains unchanged).

Is there no other way to improve performance in AIR apps?

A: 

Frame Throttling is just about the BEST way to directly affect performance of an AIR app...

Read this excellent Tutorial from the developer of Destroy Twitter: http://www.adobe.com/devnet/air/flex/articles/framerate_throttling.html

Chad Udell