Please help, I'm a newbie!I am using three text boxes as the input to my parcel APN search. I have the three text boxes working with the max characters set to 3. What I would like to do is when the use enters the 3 characters in the bookText text input box automatically move to the blockText input box so that the user does not have to click on the screen to get to the next box. Here is the code I have dreamed up. I may be completely on the wrong track? private function autoTabText_onChange(event:ChangeWatcher):void
{
if(bookText.length==3)
{
focusManager.setFocus(blockText);
}
}
Thanks for your help!