I am binding a checkbox to a property on a control. Everything is fine, but I need to bind the checkbox to another property, and the value needs to be the opposite of chkbox.checked.
BindingUtils.bindProperty(obj, "propertyBool", checkBox, "selected");
I need something like this...
BindingUtils.bindProperty(obj, "propertyBool", checkBox, "!selected");
but I'm not sure how to go about doing it in AS3.