Вот такой код......

Код:
var mixml:XML = new XML();
mixml.ignoreWhite=true;
mixml.load ("admin/webXmlShow.xml");
mixml.onLoad = function (success:Boolean) {
cargarNoticias();
}
var textForm:TextFormat = new TextFormat();
textForm.font = "Arial";
textForm.color =0xffffff;
function cargarNoticias(){
this.newsMc.attachMovie("newsMask","newsMask",10);
this.newsMc.createEmptyMovieClip("textMc",9)
this.newsMc.textMc.createTextField("news", 1,0,0,250,320);
this.newsMc.textMc.news.multiline = true;
this.newsMc.textMc.news.wordWrap = true;
this.newsMc.textMc.news.selectable = true;
this.newsMc.textMc.news.embedFonts = true;
this.newsMc.textMc.news.html=true;
this.newsMc.textMc.news.htmlText=mixml;
this.newsMc.textMc.news.setTextFormat(textForm);
this.newsMc.textMc.setMask(this.newsMc.newsMask);
}
Текст не виден....почему?
Спасибо...