If you've exhausted the possibilities of FlexBuilder's debugger, you might want to try Charles, which is a fantastic tool:
http://www.charlesproxy.com/ On Wed, Mar 10, 2010 at 11:43 AM, s_hernandez01 <[email protected]>wrote: > > > I'm trying to convert my ArrayCollection in my datagrid to an Array so I > can use the post method to send out the array to php from flex, but php is > not recognizing the array can someone tell me what I'm doing wrong: > > public var ac:ArrayCollection = new ArrayCollection(); > > public function uploadData():void{ > > var postArray:Array = new Array(); > postArray = ac.source; > > } > > >

