Is this possible, because what i have is a simple 1 user admin login system, but i want the user to beable to change the password as simple as changing a text file and uploading it which the actionscript will dynamicly load the TEXT into! the Actionscript itself?? if you know what i mean…
on (release) {
if (username_ti.text == “username”) {
error_ti.text = “”;
} else {
error_ti.text = “Username is Incorrect”;
}
if (password_ti.text == “020688”) {
passwordError_ti.text = “”;
} else {
passwordError_ti.text = “Password is Incorrect”;
}
if (username_ti.text == “admin” && password_ti.text == “password”) {
loginSuccess_ti.text = “Login Successful”;
gotoAndPlay(“loadingText”);
}
}
Code:
[LEFT]on (release) { if (username_ti.text == “like load the textfiles text into here”) { error_ti.text = “”; } else { error_ti.text = “Username is Incorrect”; }[/LEFT]