Hi guys, I am using Flex and with the AS3 libraries. I can make calls etc but when i get values returned in the event, they are in RawResult. I am not sure how to turn that into an arraycollection etc so i can make use of it in flex, or if there is a better way of accessing the data, generally speaking.
tried=
var friendsDoc : XMLDocument = new XMLDocument(e.data.rawResult); var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(true); var resultObj:Object = decoder.decodeXML(friendsDoc); //var testString: String = resultObj.user[0].uuid as String; nameText.text = resultObj.user[0].uuid as String;