RE: [flexcoders] TextInput ItemRenderer arrow keys change list selection

2009-01-05 Thread Alex Harui
Try stopImmediatePropagation(), but stopPropagation() should have worked assuming you set it up correctly. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Greg Hess Sent: Monday, January 05, 2009 9:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] TextInput ItemRenderer arrow keys change list selection

2009-01-05 Thread Greg Hess
Thanks Alex, much appreciated. You where right, I didnt have it set up correctly, I was adding my keyboard listener to the KEY_UP event and needed to be listening for the KEY_DOWN event. With that change my text arrow navigation works great without changing parent list selection! Now that is

RE: [flexcoders] TextInput ItemRenderer arrow keys change list selection

2009-01-05 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] TextInput ItemRenderer arrow keys change list selection Thanks Alex, much appreciated. You where right, I didnt have it set up correctly, I was adding my keyboard listener to the KEY_UP event and needed to be listening for the KEY_DOWN

Re: [flexcoders] TextInput ItemRenderer arrow keys change list selection

2009-01-05 Thread Greg Hess
ItemRenderer arrow keys change list selection Thanks Alex, much appreciated. You where right, I didnt have it set up correctly, I was adding my keyboard listener to the KEY_UP event and needed to be listening for the KEY_DOWN event. With that change my text arrow navigation works great without