Hi James, I think that this thread addresses your problem. Also contains my thoughts on a workaround:
http://tech.groups.yahoo.com/group/cairngorm-documentation/message/113 Douglas ------------------------------------------------- Douglas McCarroll CairngormDocs.org Webmaster http://www.CairngormDocs.org Flex Developer http://www.brightworks.com 617.459.3840 ------------------------------------------------- James Sharier Jr. wrote: > > Hi, > > Here is my call to getItem: > > var token : AsyncToken = getDataService().getItem( identity ); > token.addResponder( responder_ ); > > > Here is my result event handler: > > public function result( data : Object ) : void > { > var event : ResultEvent = ResultEvent( data ); > modelLocator_.companyFilterList = CompanyFilterList ( > event.message.body[0] ); > // modelLocator.companyFilterList = CompanyFilterList( > event.result ); > } > > > event.result is null > event.message.body[0] contains the object I'm expecting. > > I expected event.result to contain my object. Any ideas as to what I'm > doing wrong? > > TIA >

