Salve a tutti , ho un problema. Ho creato in flash (con action script)un richiamo ad una pagina xml, il problema che mi visualizza solo 4 dati e non tutti come mai?

vi posto il codice di action e grazie in anticipo per l'aiuto

XML_var = new XML();
// now load up the url.
XML_var.load("prova.xml");
// when xml is loaded call functon displayXML
XML_var.onLoad = displayXML;
// display in txt xml is loading
txt = "Loading XML data...";
function displayXML()
{
mainTag = new XML;
elementTag = new XML;
articleList = new Array;
elementList = new Array;
mainTag = this.firstChild.nextSibling;
articleList = mainTag.childNodes;
txt = "";

//loop through xml
for(i=0;i<=articleList.length;i++)
{//start for
elementList = articleList[i].childNodes;
//start for
for(j=0;j<=elementList.length;j++)
{//start for
elementTag = elementList[j];
head = elementTag.firstChild.nodeValue;
if(elementTag.nodeName.toLowerCase() == "data" )
{txt += head +"
";}


}//end for

}//end for

}