Hi!
I'm working on a webservice.
What is the best way to recive a dataset, and pass it to a datagrid in FLash?
Iv'e tried:
var: "myService stuff here..."
var myPCall:PendingCall = myWS.getImageTitles();
myPCall.onResult = function(resultCall:Object){
myGrid.dataProvider = resultCall;
----------------------- etc --------------------
wont work..

/S-fish