Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a real newbie when it comes to E4X, so please bear with me. I am working on an ActionScript 3.0 project which I would like to extract all of the attributes from an XML tag.

I have used the XML.attributes() method, but that only returns the value of each attribute/ I would like the to get all of the attribute names and attribute values for a given XML tag.

Could someone please show me as to how I could obtain this?

Thank you for your time,
spryno724

share|improve this question

2 Answers

up vote 2 down vote accepted

Google is your friend

var xml:XML = <example id='123' color='blue'/>
var attNamesList:XMLList = xml.@*;

trace (attNamesList is XMLList); // true
trace (attNamesList.length()); // 2

for (var i:int = 0; i < attNamesList.length(); i++)
{ 
    trace (typeof (attNamesList[i])); // xml
    trace (attNamesList[i].nodeKind()); // attribute
    trace (attNamesList[i].name()); // id and color
} 
share|improve this answer
thanks I saw this too, but I'm having a hard time implementing this. not sure why yet. lol – spryno724 Apr 27 '11 at 13:19
well post a sample xml and tell me what node attributes you want – The_asMan Apr 27 '11 at 18:03
thanks for your pointers and willingness to help, but I finally got it! – spryno724 Apr 28 '11 at 16:10
Glad to help. Don't forget to accept an answer. :) – The_asMan Apr 28 '11 at 17:49
Everytime I use Google, I end up in an answer that says "Why don't you use Google?". But thank God at least you answered. – Veehmot May 18 at 12:55

XML.attributes() doesn't only return the value, you're just seeing the string serialization of the attributes. Given attr = <foo bar="baz"/>.attributes()[0], attr.localname() === "bar" and `attr.toString() === "baz".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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