Hi,

Here's the RO result using the NetConnection Debugger.  I have a 
function that can always read the first array element, but the others 
aren't readable.  I've tried every combination but can't reference 
the other array elements.  I would greatly appreciate any help? 

Thanks,
Darius

--AS function--------------------

private function handleSearchResult(result:Array):Void{
/this works, displays 'Inactive'
var result:Array = result[0];
alert(result["CStatus"]);

//this doesn't work, blank value
var result:Array = result[1];
alert(result["CStatus"]);

--NetConnection Debugger----------

Result (object #2)
.....[0] (object #3)
..........AStatus: ""
..........CStatus: "Inactive"
..........PStatus: ""
..........BirthDate (object #4)
..............."Tue May 1 01:00:00 GMT-0700 2001"
.....[1] (object #5)
..........AStatus: ""
..........CStatus: "Active"
..........PStatus: ""
..........BirthDate (object #6)
..............."Sat May 7 01:00:00 GMT-0700 2000"
.....[2] (object #7)
..........AStatus: ""
..........CStatus: "Inactive"
..........PStatus: "Never"
..........BirthDate (object #8)
..............."Sun Feb 2 00:00:00 GMT-0800 1998"
.....[3] (object #9)
..........RecordCount: 1





------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to