Twitter Updates for 2009-05-03
- Tip for Adobe AIR developers: when your app is in the background, do “stage.frameRate = 1;”. It will reduce CPU usage to < 1% #
- To be notified when an Adobe AIR app goes in the background: “this.addEventListener(AIREvent.APPLICATION_DEACTIVATE, appDeactivate);” #
- Also for Adobe AIR devs: use Timer whenever possible instead of EnterFrame handlers. The later are expensive and called often… #
- Another tip for Adobe AIR devs: try to use the smallest frameRate possible (set stage.frameRate or mx:WindowedApplication attribute) #