A little update on my progress: XMLList turned out to be easy with the exception of length(). Most of the functionality is being offloaded to XML.
XML is turning out to be more challenging than I originally thought. It turns out that there’s a pretty big difference between a Document and a Node in HTML while in ActionScript there’s not much difference with the exception of having a parent and an index. At this point, I think I’m only using DOMParser to convert the XML to a walkable tree, but I think it needs to be objects rather than a Document under the hood. Let’s see how I manage to work this out tomorrow… Harbs