Есть две строки, одна одним шрифтом, во второй первые 5 символов должны писаться другим(они пишутся другим), а вот после 5-го символа должен включаться шрифт textFormatMedium, а включается шрифт по умолчанию в системе, как мне сделать, чтоб оставшийся тект писался 1-м шрифтом ?

Код AS3:
import flash.text.TextFormat;
import flash.text.TextField;
var textFormatMedium:TextFormat = new TextFormat();
textFormatMedium.color = 0x327394;
textFormatMedium.font = "Futura LT Medium";
textFormatMedium.size = 18;
var textFormatBold:TextFormat = new TextFormat();
textFormatBold.color = 0x327394;
textFormatBold.font = "Futura LT Heavy Oblique";
textFormatBold.size = 18;
var textFirst:TextField = new TextField();
textFirst.x = 100;
textFirst.y = 50;
textFirst.width = 330;
//textFirst.embedFonts = true;
addChild(textFirst);
textFirst.text = "Spending Spending Spending Spending Spending Spending";
textFirst.setTextFormat(textFormatMedium);
var textSecond:TextField = new TextField();
textSecond.x = 100;
textSecond.y = 250;
textSecond.width = 330;
//textFirst.embedFonts = true;
addChild(textSecond);
textSecond.text = "Spending Spending Spending Spending Spending Spending";
textSecond.setTextFormat(textFormatBold. 0 , 5);