标签: actionscript-3 flash
在注册页面中,我想移动到下一个字段,当我从键盘上单击选项卡时。我已经实现了用于submnission的ENTER键,但是当按TAB时我无法移动到下一个字段
答案 0 :(得分:0)
将tabIndex设置为连续值应该足够了,也可以tabEnabled .....
textfieldOne.tabIndex=1; textfieldTwo.tabIndex=2; textfieldOne.tabEnabled=true; textfieldTwo.tabEnabled=true;