scusa ma ho provato ma non funziona!!! uff..
il codice è il seguente:
codice:
scroll_mc._visible = false;
var largTxt:Number = 515;
var altTxtStart:Number = 515;
var altTxt:Number = mask_mc._height;
this.createTextField("news_txt", 1, 0, 0, largTxt, altTxtStart);
with (this.news_txt) {
wordWrap = true;
autoSize = "left";
embedFonts = true;
}
formatNews = new TextFormat();
formatNews.color = 0x666666;
formatNews.font = "Arial";
formatNews.size = 11;
news_txt.setTextFormat(formatNews);
var misuraTxt:Function = function () {
if (news_txt._height>altTxt) {
scroll_mc._visible = true;
} else {
scroll_mc._visible = false;
}
scroll_mc.setValori();
};
misuraTxt();
ora, metto su un altro livello un campo di testo dinamico con lo stesso font e incorporando i caratteri ma il problema rimane!
embedFonts=true non fa visualizzare nulla tanto quanto la maschera!
mi sembra di perdermi in una ca**.. cavolata!!