Question
More [Bindable] Spark Properties
Any ideas if you're going to make more properties in Spark optionally bindable?
public function set prop(value:String):void
{
_prop = value;
dispatchBindingEvent("propChange");
}
protected function dispatchBindingEvent(type:String):void
{
if (!suspendEventProcessing && hasEventListener(type))
dispatchEvent(new Event(type));
}
Doesn't seem to break anything.
