[flexcoders] Re: Flex 2 Release - HTTPService decoding and ArrayCollection

2006-07-25 Thread thunderstumpgesatwork
I'm thinking I may write a custom static util function ... public static function MyArrayUtil.toArray(objArray:Object):Array - If object is ArrayCollection, return the 'source' array - else return ArrayUtil.toArray() then I can search and replace in my entire project for ArrayUtil.toArray and

[flexcoders] Re: Flex 2 Release - HTTPService decoding and ArrayCollection

2006-07-25 Thread thunderstumpgesatwork
I'm thinking I may write a custom static util function ... public static function MyArrayUtil.toArray(objArray:Object):Array - If object is ArrayCollection, return the 'source' array - else return ArrayUtil.toArray() then I can search and replace in my entire project for ArrayUtil.toArray and

[flexcoders] Re: Flex 2 Release - HTTPService decoding and ArrayCollection

2006-07-25 Thread Tim Hoff
Hi Thunder, Try setting the makeObjectsBindable=false in the HTTPService tag. -TH --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi all, I have been using an HTTPService to get an XML configuration file from the server and using it to configure my app.