Skip to main content
Known Participant
August 27, 2009
Question

More [Bindable] Spark Properties

  • August 27, 2009
  • 1 reply
  • 853 views

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.

This topic has been closed for replies.

1 reply

August 27, 2009

Lance - it's not on the schedule to do right now, and I wouldn't want to charge into it without evaluating the impact. Can you log a bug/ECR?

E.

viatroposAuthor
Known Participant
August 27, 2009

Understandable.  What would you do if you were going to implement this...  Visual tests?  Time performance tests?  Number of events dispatched?  Running a specific sample application?  Let me know so I can start evaluating the impact.

Lance