Situation I have XML like that <album> <name></name> <images> <image></image> <image></image> <image></image> </images> </album>
using HTTPService I'm getting this XML.
I have AS Class:
public class Album {
public var name:String;
public var images:ArrayCollection;
}
straight cast like:
var album:Album = Album (event.result);
doesn't work
Is any suggestion around this, what I do wrong, may be there are some
other way to do that
Thank you.

