PDA

View Full Version : keyboard navigation


Richard H
11-30-2003, 03:49 PM
Can anyone help me please? I need to be able to control the tabbing order on the screen by using keyboard only. How do I do that? It's probably really simple but I'm totally new to this. If anyone responds, I can send a screenshot of what I'm trying to do so it becomes more clear.Cheers:confused:

tg
12-01-2003, 01:45 PM
set the tabIndex for the components/movieclips/textfields in the order you want:

myMovieclip.tabIndex=1;
myOtherMovieclip.tabIndex=2;
myTextField.tabIndex=3;

etc...