RE: [flexcoders] Databinding Custom Event

2006-11-28 Thread Andrew Trice
__ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog: http://www.cynergysystems.com/blogs/page/andrewtrice Email: [EMAIL PROTECTED] Office: 866-CYNERGY From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Databinding Custom Event

2006-11-28 Thread Bjorn Schultheiss
Hey, What if any benefits are there to defining a custom event type for your databinding? ie: [Bindable(event="MyEvent")] public function set firstname(value:String):void { _firstname = value; dispatchEvent( new FlexEvent('MyEvent') ); } public function get firstname():String {