Por favor usa el resaltador de codigo para que este sea mas legible.
Tienes que obtener el numero de nodos que tiene el XML y mostrar el indice mayor.
Esta hecho al vuelo sin probar, pero esa es la idea.
Código actionscript:
Ver originalfunction makeList() {
data_mc.removeAll();
var list_xml:XML = new XML();
list_xml.ignoreWhite = true;
list_xml.load(path+"/lista.php");
list_xml.onLoad = function() {
var nodos = this.firstChild.childNodes;
var last = nodos[nodos.length()]
var size:Number = Math.ceil((last.attributes.tamanio/1024));
data_mc.addItem({Nombre:last.attributes.name, Tamaño:size+" Kb"});
}
}