custom text format on a TextArea using flash actionscript
import fl.controls.TextArea;
var tF:TextFormat = new TextFormat();
tF.color = 0x0000FF;
tF.italic = true;
tF.bold = true;
tF.font = "Monotype Corsiva";
tF.size = 15;
var tI:TextArea = new TextArea();
tI.setStyle("textFormat", tF);
addChild(tI);