Здравствуйте.
Подскажите пожалуйста.
Есть текст

Код AS3:
textFormat = new TextFormat();
textFormat.color = 0x327394;
textFormat.bold = false;
textFormat.font = "Futura LT Medium";
textFormat.size = 17;
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);
Проблема в том, что в тексте Spending too much on car insurance? Фраза "too much" должна быть написанна другим шрифтом, как это сделать ?
Я создал отдельную переменную и добавил в нее новый шрифт

Код AS3:
textFormatBold = new TextFormat();
textFormatBold.color = 0x327394;
textFormatBold.bold = false;
textFormatBold.font = "Futura LT Heavy Oblique";
textFormatBold.size = 17;
А как этот шрифт подлючить к тексту, который уже написан другим шрифтом ?