Look at my code and see if anyone can see why it is not working. I have not used this feature much and it seems there is something wrong with my code.
It will not move at all when I hit the TAB key...
Ya' Gotta Love It!
It will not move at all when I hit the TAB key...
Code:
on (keyPress "<Tab>") {
if (Selection.getFocus()=="_root.contact_in.realname") {
Selection.setFocus("_root.contact_in.email");
} else if (Selection.getFocus()=="_root.contact_in.email") {
Selection.setFocus("_root.contact_in.email");
} else if (Selection.getFocus()=="_root.contact_in.body") {
Selection.setFocus("_root.contact_in.realname");
}
}