so live docs says this for calling .lenght() on an XML object

For XML objects, this method always returns the integer 1. The length() method of the XMLList class returns a value of 1 for an XMLList object that contains only one value.

i called it on an xml that looked like this:

<xml>
<picture>1</picture>
<picture>2</picture>
</xml>

i tried myXML.lenght() and it reallt returned 1. how do i get the number of children in my xml?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Try

var length:int = myXML.children().length();

Also, this is the method I use to make sure the children are really Elements, and not just Text Nodes.

    public static function getNumberChildElements(node:XML):int{
        var count:int = 0;
        for (var i:int=0; i<node.children().length(); i++){
            if (node.children()[i].nodeKind() == "element")
                count++;
        }
        return count;
    }
link|improve this answer
feedback

Also myXML.*.length() will work

link|improve this answer
feedback

Try:

var totPictures=myXML.picture.length();
trace(totPictures); //2
link|improve this answer
feedback
var num:int = myXml.length();

Cheers,

link|improve this answer
as i said in the post- i tried it already. well, it gives me 1 even with 2 children... – vasion Apr 16 '10 at 19:17
looks like it's counting your <xml> node, not your <picture> nodes. try myXML.children().length(). – heavilyinvolved Apr 16 '10 at 21:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.