Thanks for the replies - I got this working using this logic in the keydown
handler:
if(event.shiftKey){
if(event.keyCode == Keyboard.TAB){ // SHIFT-TAB
// logic goes here
}
}
--- In [email protected], Alex Harui <aha...@...> wrote:
>
> The actual work of tabbing is done in a FocusEvent.KEY_FOCUS_CHANGE which has
> a property that tells you if the shift key was down.
>
> Alex Harui
> Flex SDK Developer
> Adobe Systems Inc.<http://www.adobe.com/>
> Blog: http://blogs.adobe.com/aharui
>
> From: [email protected] [mailto:[email protected]] On
> Behalf Of invertedspear
> Sent: Friday, December 18, 2009 3:59 PM
> To: [email protected]
> Subject: [flexcoders] Re: capturing SHIFT+TAB on keyDown event
>
>
>
> I don't have time to look it up right now, but I'm pretty sure you catch the
> Tab key down, then check if the shift key was down at the same time.
> Hopefully this gets you going in the right direction.
>
> --- In [email protected]<mailto:flexcoders%40yahoogroups.com>,
> "flexcoder2008" <djohnson29@> wrote:
> >
> > Trying to capture the SHIFT+TAB key event on my DataGrid. It seems the
> > Keydown handler can only handle 1 key at a time. What is the best way to
> > handle this?
> >
>