How can I add an element to object in arraycollection?
Example code:
var mycollection:ArrayCollection = new ArrayCollection();
var myobject:Object=new Object();
myobject["label"]="My Label";
myobject["data"]="My data";
mycollection.addItem(myobject);
If later on, I want to add extra element, let say "date" to myobject in mycollection, how can I do it?
Thank you.