Ive set up the ArrayCollection with getter/setter functions and have put a break point in the setter but nothing happens. If something is setting it to null then it should fire right? When I navigate away then I get an error when the ArrayCollection is trying to be accessed.
private var _ips:ArrayCollection = new ArrayCollection;
[Bindable(event="ipsChanged")]
// Define public getter method.
public function get ips():ArrayCollection
{
return _ips;
}
// Define public setter method.
public function set ips(value:ArrayCollection):void
{
_ips = value;
// Create event object.
var eventObj:Event = new Event("ipsChanged");
dispatchEvent(eventObj);
}