allora ho fatto un news ticker che carica testo da un file xml esterno fin qua tutto bene funge da dio, ma quando lo carico dentro il mio filmato principale tramite il LoadMovie dentro un movie clip vuoto , TA-DAAAAAN le news non si vedono!
so perfettamente che va cambiato qualcosa nel codice per caricarlo dentro un'altro movie ma nn riesco a capire cosa...sapreste dirmelo voi

ecco il codice che ho nel primo frame!

urlXML = new XML();
urlXML.onLoad = convertXML;
urlXML.load("news.xml");
function convertXML() {
mainTag = new XML();
elementTag = new XML();
articleList = new Array();
elementList = new Array();
mainTag = this.firstChild.nextSibling;
if (mainTag.nodeName.toLowerCase() == "dataroot") {
articleList = mainTag.childNodes;
titolo = new Array();
autore = new Array();
url = new Array();
for (i=0; i<=articleList.length; i++) {
if (articleList[i].nodeName.toLowerCase() == "news") {
elementList = articleList[i].childNodes;
for (j=0; j<=elementList.length; j++) {
elementTag = elementList[j];
elementType = elementTag.nodeName.toLowerCase();
if (elementType == "titolo") {
_root.titolo.push(elementTag.firstChild.nodeValue) ;
}
if (elementType == "autore") {
_root.autore.push(elementTag.firstChild.nodeValue) ;
}
if (elementType == "url") {
_root.url.push(elementTag.firstChild.nodeValue);
}
}
}
}
}
c = 0;
while (c<=autore.length) {
output += "

<a href=\""+url[c]+"\" target=\"_new\">"+titolo[c]+"</a></font></p>"+"
"+"</BR>";
c = c+1;
}
}