Is there a way to convert the information in the inputName text field, down to lower case before it checks its validity? or a way to disable case sensitivity perhaps?
[FONT=Courier New][AS]btn.onRelease = function() {
if (inputName == “kirupa”, “KIRUPA”, “Kirupa”) {
inputName = “Access granted!”;
} else {
inputName = “Access denied!”;
}
}
[/AS][/FONT]