Yes, tab index will not go through each radio button. The tab index will
only goto the first radio button in a radio button group. You can use your
arrow keys to step through each radio buttons. I have faced these problem in
my last project. So I wrote my own .as to make a work around.

I can give a basic idea. Listen to keyboard event on the radio buttons. Then
on the event handler check for down arrow press and up arrow key press. If
down arrow is pressed then set the focus to the next radio button (also make
the selected property to true if required). lly if up arrow is pressed move
the focus using setFocus to the prev radio button.

Hope this helps. If you insist I can search and put some source code here.

Thanks & Regards,
kannan. R

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to