I have a ‘client login’. When a client logs in with his/her password and presses the arrow, I want to take them to their own unique page located on different frames, but I can’t figure out how it might be done.
Here’s the script I’m using:
stop();
arrow_btn.onRelease=function() {
if (userName==userName1||userName==userName2) {
gotoAndStop(“clientLogin_01”,“clientLogin_02”);
}else {
gotoAndPlay(“loginFail”);
}
}
I can get the userName process to work to go to clientLogin_01, but not to clientLogin_02 or subsequent numbers. The loginFail also works fine.
Would someone please tell me how to go to unique frames.
Also, how do I clear the login box (input text) of information when I move to a new frame.
Hope this is clear enough.
Many thanks,
Art