I have read posting which state how to eliminate the warning of "'X'
on class 'Object' (class is not an IEventDispatcher)" and that the
individual objects within the array need to be converted to an
ObjectProxy instead of a regular Object. 

Now I have a remoteobject returning a large database query and convert
the results into a ArrayCollection so I thought the following would
work...

private function getMasterQuery_result(event:ResultEvent):void 
{
myArrayCollection = event.result as ArrayCollection;
for each(var tArray:Object in myArrayCollection)
{
        for each(var item:Object in tArray)
        {item = new ObjectProxy(item);}
}
...
}

however doing that does not reduce he amount of binding warnings as
comapred to just...

private function getMasterQuery_result(event:ResultEvent):void 
{
myArrayCollection = event.result as ArrayCollection;
...
}

I assume there is something simple that I'm overlooking. And i'm
hoping someone can point it out to me.


Reply via email to