Hi all, Today I was stumbled upon the same situation, it is true that event handler for "focusOut" event is triggered twice for mx:TextInput component.
Checked "event.target" property and it is equal to the internal textfield of mx:TextInput component of UITextField type both times, so this property cannot help us here to differentiate between 2 calls. What I found helpful is "event.relatedObject" property. During first call to FocusOut event handler it is equal to UITextField internal textfield, during second call is equal to NULL. Great, now we can differentiate between 2 calls.... -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED] On 17/11/2007, Alex Harui <[EMAIL PROTECTED]> wrote: > > Maybe the internal textfield is sending one. See if the event.target > is different and what it is. > > > ------------------------------ > > *From:* [email protected] [mailto:[EMAIL PROTECTED] *On > Behalf Of *donvoltz > *Sent:* Friday, November 16, 2007 1:27 PM > *To:* [email protected] > *Subject:* [flexcoders] Re: Event result not making sense > > > > Thank Alex, > > I did not realize this and have since changed the two alerts to trace > statements. When I run the app in debug mode, I still see that the > event is being sent twice. Any other ideas?? > > Thanks > > Don > > >

