este es mi as
System.useCodepage = true;
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function()
{
var nodes = this.firstChild.childNodes;
total = nodes.length;
for( var i=0; i < total; i++){
fm_titulo.text = nodes[i].attributes.titulo;
foto.loadMovie( nodes[i].attributes.foto );
fm_texto.text = nodes[i].attributes.texto;
}
}
xml.load("solapa.xml");
stop();
este es el flash tiene 2 txt dinamicos y mc donde cargo la foto
![](http://img135.imageshack.us/img135/9469/fotovl9.th.jpg)
y el xml es este
<solapa>
<solapa titulo="kalsdjlkaj" foto="01.jpg" texto="21asd5" />
<solapa titulo="lkajsld" foto="02.jpg" texto="18asdad8" />
</solapa>