Hi
I have two text input fields und want that the user can hit the <TAB> Key to jump between them.
So I put the follwing Code into a Button:
It works perfect as long as I don't load the swf into another movie! I don't know what I could change in the script, do you?
Thanks for your help
MICHER
I have two text input fields und want that the user can hit the <TAB> Key to jump between them.
So I put the follwing Code into a Button:
Code:
on (keyPress "<Tab>") {
if (Selection.getFocus() == "_level0.varUsername") {
Selection.setFocus("_level0.varPasswort");
} else if (Selection.getFocus() == "_level0.varPasswort") {
Selection.setFocus("_level0.varUsername");
}
}
It works perfect as long as I don't load the swf into another movie! I don't know what I could change in the script, do you?
Thanks for your help
MICHER