How do I determine whether a value set comes from user interaction with the input component, or from binding?
Example:
<s:NumericStepper xmlns=...
value="{SomeDataManager.foo}">
<fx:Script>
override public function set value(newValue:Number):void {
if (setByUser) {
super.value = newValue;
} else {
// ...
}
}
</fx:Script>
</s:NumericStepper>
Using Flex 4.1 if that matters.