Salve ragazzi, in un file di flash (con una textarea che come vedete ho chiamato mctxt) carico dati da un Feed RSS che ho su file con il seguente codice:

mctxt.drawFocus="";
mctxt.label.setFocus = false;
mctxt.html = true;
mctxt.editable = false;
mctxt.wordWrap = true;
mctxt.multiline = true;
mctxt.label.condenseWhite = false;
mctxt.label.selectable = false;
_global.styles.TextArea.setStyle("backgroundColor" , "transparent");
_global.styles.TextArea.setStyle("borderStyle", "none");
mctxtContent = new XML();
mctxtContent.ignoreWhite = true;
mctxtContent.load("miofile.xml");
mctxtContent.onLoad = function(success)
{
if(success)
{

var t1 = "<font color='#000000' face='Verdana' size='11'>";
var t2 = "</font>";
var t3 = "";
var t4 = "
";
var t5 = "<font color='#212989' face='Verdana' size='11'>";

var Titolo1 = this.firstChild.firstChild.childNodes[6].firstChild;
var Notizia1 = this.firstChild.firstChild.childNodes[6].childNodes[2].firstChild.nodeValue;
var Titolo2 = this.firstChild.firstChild.childNodes[7].firstChild;
var Notizia2 = this.firstChild.firstChild.childNodes[7].childNodes[2].firstChild.nodeValue;

mctxt.text = t3 + t5 + titolo1 + t2 + t4;
mctxt.text += t1 + notizia1 + t2 + "

";
mctxt.text += t3 + t1 + titolo2 + t2 + t4;
mctxt.text += t1 + notizia2 + t2 + "

";


} else {
mctxt.text = "caricamento errato";
}
this.path.nextFrame();
};
Il problema è che il tutto funziona solo se esporto con Flash Player 6, ma ora avendo altre esigenze ed utilizzando Flash Professional 8 dovrei esportare con Flash Player 8, solo che non riesco a capire come mai esportando in formato 8 la funzione sopra citata non funziona più

Spero possiate darmi una mano!
Grazie a tutti!