I've encountered a problem that's driving me nuts. Apparently button labels do not scale appropriately in flex or I'm just not going about it correctly. A simple runnable test case is below.
The issue: 
In the test case you can see that the button label is cut off at the end at multiple different window sizes but sometimes it "pops" into a new font level it seems and it looks correct? Why is this?
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
import mx.events.ResizeEvent;
public var minScale:Number = 0.5;
public var baseWidth:Number = 1000;
public var baseHeight:Number = 800;
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
super.updateDisplayList(unscaledWidth,unscaledHeight);
if(width < baseWidth || height < baseHeight) {
var sx:Number = Math.max(minScale, width / baseWidth);
var sy:Number = Math.max(minScale, height / baseHeight);
var s:Number = Math.min( sx, sy );
getChildAt(0).scaleX = s;
getChildAt(0).scaleY = s;
}
else{
getChildAt(0).scaleX = 1;
getChildAt(0).scaleY = 1;
}
}
]]>
</mx:Script>
<mx:Canvas>
<mx:Button label="WWWWWWW" fontSize="12"/>
</mx:Canvas>
</mx:Application>
Thanks.
