I’m going to split this question into two parts…
PART 1 :
I’m making a username and password thing on flash 8 pro, and i’ve done everything but some things dont work correctly,
this is the code for the continue button.
on (release) {
if (pass == "") {
output = " Please Enter A Password. "
trace ("no pass")
}
if (user == "") {
output = " Please Enter A Username. "
trace ("no user")
}
if (pass == "" && user == "") {
output = " Please Enter A Password AND Username. "
trace ("no pass or user")
}
else {
nextFrame();
}}
when the user enters neither a username or password the output works correctly but when the user enter either no username or no password it doesn’t work… can someone help me with that. Thanks in Advance.
PART 2
At the last part of the button code (see above)
}
else {
nextFrame();
}}
When the user enters the right information I want the a .txt file to save to my computer (pref. my desktop) containing the username and password entered. I’ve searched around and can’t find much help on it. And if it helps I’m on Vista.
Thanks in advance again.