As the title asks, I am asking the question "Is Flash Faulty?"
I have been running some "if" codes in flash for a while now, and any time that I do, it seems to glitch up on me.
Here's an example of what I am experiencing:
I put the code
onEnterFrame = function(){
if (usernamelogin == "Greth-of-D") {
usernamelogin = "Greth-of-Destruction";
};
if (usernamelogin == "Greth-of-Destruction" and passwordlogin == "a") {
gotoAndStop(4);
}
};
However, when I actually type in Greth-of-D into the username bar, it does not change to "Greth-of-Destruction". Nor does it go to frame 4 if I change
if (usernamelogin == "Greth-of-Destruction" and passwordlogin == "a") {
gotoAndStop(4);
} to if (usernamelogin == "Greth-of-D" and passwordlogin == "a") {
gotoAndStop(4);
}
Does anyone know what is happening? I have the feeling that this is Adobe's fault. That, or I might need to get the full version of Flash (Flash fucked on my machine, so I'm using another one for now).