A while ago, I created XML Reader Flash panel. I’ve been using it (and colleagues) for some time now, and I found some points of improvement: Doesn’t work correctly on a mac (scrollbar disappears) External XML (fill in url of XML) Remove \r and \n in node Errors about wrong formed XML Different methods of [...]
Because I talk about two topics on my blog that have absolutely nothing to do with each other I created (well, WordPress provided it) two separate RSS feeds for Urban papercraft and Flash. Custom RSS Links All Flash posts All Urban papercraft posts
By Matthijs Kamstra
|
Posted in Flash, Improvement, Misc, Urban papercraft
|
Also tagged Actionscript, AS2, AS2 to AS3, Flash, Flash experiments, from AS2 to AS3, My Blog, Papercraft, Urban, Urban papercraft
|
When you’re working with Flash and dynamic content your no stranger to XML. And how to access the data in the XML. There are a couple of ways you can access and manipulating XML documents in Flash: the nerdy way (XML DOM): my_xml.firstChild.childNodes[2].childNodes[1].attributes.x the xPath way using xfactorstudio XPath classes: xmlDoc.selectNodes(“/bookstore/book[price>35]/title”) the Flash XPathAPI class: [...]