Vaya tontería se me pasó por alto.
Es:
Código:
var miXML:XML = new XML;
miXML.ignoreWhite = true;
var i=0;
miXML.onLoad = function(exito)
{
if(exito) {
trace(this);
trace(this.firstChild.childNodes[i].firstChild.nodeValue);
} else {
trace("Error cargando el XML");
}
}
miXML.load("prueba.xml");
El fallo es onLoad, que pusiste load.
Saludos!