/ Published in: ActionScript 3
URL: http://blogs.adobe.com/cantrell/archives/2009/10/generating_dynamic_xml_with_e4x.html
Here's how you can generate XML dynamically and use variables as attribute values or text nodes.
Expand |
Embed | Plain Text
var products:Array = new Array(); products.push({name:"Laptop", id:111, price:2999.99}); products.push({name:"Mouse", id:222, price:49.99}); products.push({name:"Phone", id:333, price:199.99}); var inventory:XML = <inventory/>; for each (var o:Object in products) { inventory.appendChild(<product id={o.id} price={o.price}>{o.name}</product>); }
You need to login to post a comment.
