I would like to know when an Array of objects is empty (or not).
I tried using the ObjectProxy as follow:
myArrayProxy=new ObjectProxy(myArray);
myArrayProxy.addEventListener(PropertyChangeEvent.PROPERTY_CHANGE, changeArrayHandler)
But the event is not fired when the object's content change.
Any idea on how to solve this?
Thanks