heya i have seen other threads like this but i would rather solve this problem instead of creating a new problem, i have created a login for my website but the actionscript dosnt seem to read the usernames or passwords so when you click login it always goes to the invalid password page any help would be much apreciated.
this is the script:
on (release) {
if (user == ‘name’ && pass == ‘password’) {
gotoAndStop(“valid”);
} else {
gotoAndStop(“invalid”);
}
}