Первый шрифт вообще не показывается, а весь текст заменяется вторым шрифтом, не знаю, что не так, вот код

Код AS3:
[Embed(source='fonts/Futura LT Medium.ttf', fontFamily="Futura LT Medium", embedAsCFF="false")]
var MyFont:Class;
[Embed(source='fonts/Futura LT Heavy Oblique.ttf', fontFamily="Futura LT Heavy Oblique", embedAsCFF="false")]
var MyFontBold:Class;
textFormat = new TextFormat();
textFormat.color = 0x327394;
textFormat.bold = false;
textFormat.font = "Futura LT Medium";
textFormat.size = 18;
textFormatBold = new TextFormat();
textFormatBold.color = 0x327394;
textFormatBold.bold = false;
textFormatBold.font = "Futura LT Heavy Oblique";
textFormatBold.size = 18;
textFirst = new TextField();
textFirst.x = -400;
textFirst.y = 43;
textFirst.width = 330;
textFirst.embedFonts = true;
addChild(textFirst);
textFirst.text = "Spending too much on car insurance?";
textFirst.setTextFormat(textFormat);
textFourth = new TextField();
textFourth.x = -400;
textFourth.y = 43;
textFourth.width = 330;
textFourth.embedFonts = true;
addChild(textFourth);
textFourth.text = "To start for free click here";
textFourth.setTextFormat(textFormatBold, 3, 10);
Добавлено через 14 минут
Цитата:
Сообщение от КорДум
Скажите, шрифт заэмбеденный? Правильно заэмбеденный? У текстового поля embedFonts в true?
|
Да,в том то и проблема
Добавлено через 26 минут
Неужели никто не знает ?

Люди, помогите пожалуйста !
