Puedes utilizar getBytesLoaded y getBytesTotal algo asi:
Código:
tuXML.onLoad = cargaXML;
function cargaXML() {
MC.onEnterFrame = function() {
b_total = tuXML.getBytesTotal();
b_loaded = tuXML.getBytesLoaded();
if (b_loaded < b_total) {
porcentaje = (b_loaded/b_total)*100;
estatus = "cargando Info" add porcentaje add "%";
} else {
estatus = "Info Cargada";
delete this.onEnterFrame;
}
//aqui va todo lo que Flash hara cuando el XML este cargado!
};
Saludos!!