CLICK HERE TO COPY
Actionscript:
function numParents(e:XML):int {
var num:int = 0;
while (e.parent()!= null) {
num++;
e = e.parent();
}
return num;
}
Sometimes when reading through XML it's helpful to know how many parents a given node has. This function will do that. I recently used this [...]