private var styleText:String = '.largered { font-family:Arial, Helvetica;font-size:16; color: #ff0000; }' +
'.smallblue { font-size: 11; color: #0000ff; font-family:Times NewRoman, Times; }';
[Bindable]
private var lipsum:String = "Large"+
" small";
[Bindable]
private var style:StyleSheet;
private function createStyle():void
{
style = new StyleSheet();
style.parseCSS(styleText);
text.styleSheet = style;
text.htmlText = lipsum;
}