--- In [email protected], sasuke <uzumaki.naruto...@...> wrote: > > > Hi, > > Yes, even I've done that. But my main gripe is that when you have a Bindable > tag with your custom event name, is it not possible to use it directly with > any custom/built-in flex control? > > [Bindable("myEvent")] > private var txt:String = "HI";
When you use the syntax [Bindable(event="something")] You are telling the compiler "I know what I'm doing, and I'm planning to dispatch the event 'something' myself." If you don't, or you're not, just use the default syntax and let Flex dispatch the needed events for you. http://tv.adobe.com/watch/360flex-conference/diving-in-the-data-binding-waters-by-michael-labriola/ HTH; Amy

