[Bindable] public var menuBarCollection:XMLListCollection; private var menuBarXml:XMLList;
private function init():void { flexutil.getItems(); }
protected function flexutil_resultHandler(event:ResultEvent):void { var xmlString :String = event.result as String;//返回xml字符串 var xml :XML = new XML(xmlString);//转成xml var xmlList :XMLList = xml.children() as XMLList; menuBarCollection = new XMLListCollection(xmlList); }