|
It probably was returned as an Object. We
don’t have a specific HashMap class, instead Object is what you’ll
get and it won’t indicate how many properties there are. You can however
still iterate through them: var numProps:int = 0; for (var key:String in obj) { var value = obj[key]; numProps++; } From: I have a server side POJO
that has a HashMap, my actionscript call
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
- RE: [flexcoders] passing Map in remote object Matt Chotin
- [flexcoders] Re: passing Map in remote object Darin Kohles
- Re: [flexcoders] Re: passing Map in remote object Scott Langeberg

