public function get font():String {
return _font;
}
public function set font(value:String):void {
if ((_style as TextStyle).currBitmapFont) {
_getTextStyle().currBitmapFont = null;
scale(1, 1);
}
if (_bitmapFonts && _bitmapFonts[value]) {
_getTextStyle().currBitmapFont = _bitmapFonts[value];
}
_font = value;
isChanged = true;
}