mcnarek, can you explain how you exported your fonts from FontBuilder?
I ended up with an xml file and a .png file, and yet when I try and render this in Starling the "name" property comes up as "".
Can you give a little insight into how this should work?
My code is something like:
var fontTexture:Texture = getTexture("FontTexture");//Starling texture
var fontXML:XML = XML(new FontXml);
var font:BitmapFont = new BitmapFont(fontTexture,fontXML);
TextField.registerBitmapFont(font,"MyFont");
return font;
var n:String = Assets.getFont().name;
_timer_tf = new TextField(300, 100, "", Assets.getFont().name, 18, 0xFFFFFF);
n comes up as an empty string.
Any clues?