allora ho questo file xml fatto così
<?xml version="1.0"?>
<!DOCTYPE file[
<!ELEMENT file (nome?)>
<!ELEMENT nome (#PCDATA)>
]>


<file>
<nome>
unite.jpg
</nome>

<nome>
turisardegna.jpg
</nome>

<nome>
unite_v1.jpg
</nome>
</file>

.
ora vorrei sapere come fare per caricare questi dati :
ho provato ad usare questo codice ma nn ne cavo piede il mio scopo è quello di , accedere hai nodi nome e prenderne i dati
guarda l'oggetto xml da debug pare che così debba funzionare invece no !!!!
filexml = "img.xml";
ApriXML();
function ApriXML() {
mioxml = new XML();
myarray = new Array();
mioxml.ignoreWhite = true;
mioxml.load(filexml);
mioxml.onLoad = ElaboraXML;
function ElaboraXML(success) {
if (mioxml.loaded) {
pippo = new array();
pippo = mioxml.firstChild.childNodes.childNodes.nodeName;

trace(pippo);
return
trace("-----------------------");
for (i=0;i<=pippo.length;i++){
trace("elemento ["+i+"]")
trac(pippoi].nodeName ) ; }
};