Ciao ragazzi. Ho già pstato epr sta cosa ma nonn ho ancora trovato la solution.
Io hoi un xml fatto così

codice:
<dati>
	<Sezione img="01.jpg">Ciao campo 1</Sezione>
	<Titolo img="02.jpg">Ciao campo 2</Titolo>
	<Specifiche img="03.jpg">Ciao campo 3</Specifiche>
	<Altro img="04.jpg">Ciao campo 4</Altro>
</dati>
che richiamo con AS così e recupero immagini e testo. Il testo mi fa il ciclo che chiedo ma le immagini compaiono perkè metto sullo stage 4 MC con istanza clip1, clip2, clip3, clip4:

codice:
filexml = "dati.xml";
system.useCodepage = true;
this.stop();
mio_xml = new XML();
mio_xml.path = this;
mio_xml.ignoreWhite = true;
mio_xml.load(filexml);
mio_xml.onLoad = function(success) {
	//faccio il ciclo e recupero i dati su 4 testi dinamici CON 4 VARIABILI DIFFERENTI differenti
	if (success) {
		var nodes = this.firstChild.childNodes;
		for(var i = 0; i < nodes.length; i++){
			this.path["campo" + (i + 1)] = nodes[i].firstChild.nodeValue;
			this.path["clip" + (i + 1)].loadMovie(nodes[i].attributes.img);
		}
	} else {
		this.path.campo1 = "Dati mancanti";
	}
};
Come faccio a fare un ciclo che mi permetta di associare a campo1 il clip1 secondo Voi?