04
Dec
This is how I copied all the attributes of an XML node (srcXMLNode) to another XML node (dstXMLNode) in Flex, without knowing the names of those attributes: for each(var attr:XML in srcXMLNode.attributes()) { dstXMLNode.@[attr.name()] = attr; } And this is the way I added child nodes of an XML element to another: for each(var elem:XML [...]
