tags:

views:

1183

answers:

2

I'd like to be able to run an xml transformation using an xslt file in my AIR project. What's the best way to accomplish this?

+1  A: 

XSLT support is typically provided by browsers. The version of Webkit embedded in AIR does not support XSLT. So, you'll have to do this all by yourself. I found this project that lets you play around with XPath queries in AS3. Now, template parsing and node creation you'll have to do by yourself.

dirkgently
+1  A: 
David Lichteblau