Building XML with variables AS3
Monday, July 12th, 2010
Honestly, I didn’t think this little test would work. But you can actually build out XML with variables. Here is a very simple example:
var tag:String = “tag”;
var id:String = “Step”;
var attribute:String = “id”
var xml:XML = Value In Tag
Seems obvious, but I still thought it was pretty cool. Also, there should be […]