Я уже и так и сяк пробовал:

Код AS3:
txt.setTextFormat(TLFformat);
и так:

Код AS3:
var fd1:FontDescription = new FontDescription();
fd1.fontLookup = FontLookup.EMBEDDED_CFF;
fd1.fontName = "SegoeWP";
можно даже:

Код AS3:
function onCLICK(e:MouseEvent):void
{
var TLFformat:TextFormat=new TextFormat();
TLFformat.color=0xFF0000;
TLFformat.font="SegoeWP";
TLFformat.size=32;
trace("Замена шрифта");
txt.defaultTextFormat=TLFformat;
txt.setTextFormat(TLFformat);
txt.text="Новый текст";
txt.defaultTextFormat=TLFformat;
txt.setTextFormat(TLFformat);
}
не работает. Явно с внедрением шрифтов заковыка.