| AS coding help
Ok I'm trying to make this game and it checks the strUserName textbox, I need to check if the text is "Guest" or not, and if it is, go to the next frame I have this script for the login button: on (release)
on (release) {
if (_root.login.strUserName == "Guest") {
play();
} else {
strmsg.msg = "Sorry, you need to log on as guest"
strmsg._visible = true;
}
}
|