try... (e.result.data[0] as ArrayCollection)[0]
(e.result.data.getItemAt(0)).getItemAt(0) (e.result.data.getItemAt(0) as ArrayCollection).getItemAt(0) One of those should work. --- In [email protected], "Wally Kolcz" <wko...@...> wrote: > > > > I am returning a web service as objects from > Blue Dragon. I managed to figure out how to assign them to a datagrid, but > some of my application requires assigning values to variables or text. Can > anyone tell me how to get the value 'wkolcz' so I can use it to assign it to > a variable 'uniqname'? > > I tried: > > > Application.application.uniqname = e.result.data.getItemAt(0).[0]; which, of > course, didn't work. > > The result looks something like e --> results --> data --> [0] --> [0] (which > value is 'wkolcz') > > I attached a screen shot of my debugging results. > > Thanks to anyone who can help. >

