I have a .as class extending arraycollection. In the constructor I set up a webservice and listner to capture the result in resultHandler
Ideally in resultHandler I'd do something like this=event.result; but it doesn't work, so I am looping over the event.result, adding it to the array collection like: this.addItem(event.result[i]); can I assign the whole array collection in one go. Probably missing something simple, but I just can't see it :( Thx

