they do not work together. why?
if i set antiAlias to ADVANCED the font is not shoun. if i let it the way it is now the font looks very ugly because it’s not a pixel font. if i set embed to false noone will see it but looks ok.
so what is left to do? this combination work perfectly in AS2 but i don’t want to do the project in as2.
thanks
import flash.text.*;
var font = new ArcherBook(); //from library
var format:TextFormat = new TextFormat();
format.color = 0xffffff;
format.size = 14;
format.font = font.fontName;
var myText:TextField = new TextField();
myText.embedFonts = true;
myText.autoSize = TextFieldAutoSize.LEFT
myText.antiAliasType = AntiAliasType.NORMAL;
myText.sharpness=0;
//myText.defaultTextFormat = format;
myText.selectable = true;
//myText.mouseEnabled = true;
myText.text ="Hello World";
myText.setTextFormat (format);
stage.addChild(myText);