Guest_imported
New member
- Jan 1, 1970
- 0
i trying to a make a password system, every user has his own .txt file where his password is stored,
this txt files are naimed after the username,
the user xyz would have his file xyz.txt where his password
123 is stored.
on the first frame in my film the user enters his username and password(pass)
and then presse the login button which does the following:
on (release) {
loadVariablesNum (+username+".txt", 0);
gotoAndPlay (2);
}
The second frame should verify the pass:
if password(from txt) eq pass(just enterd)
goto frame 3
else
stop
But ths doesnt work, i have no idea why, both pass and password are loaded correctly there is a problem in the if funktion. what should i do?
Thx
this txt files are naimed after the username,
the user xyz would have his file xyz.txt where his password
123 is stored.
on the first frame in my film the user enters his username and password(pass)
and then presse the login button which does the following:
on (release) {
loadVariablesNum (+username+".txt", 0);
gotoAndPlay (2);
}
The second frame should verify the pass:
if password(from txt) eq pass(just enterd)
goto frame 3
else
stop
But ths doesnt work, i have no idea why, both pass and password are loaded correctly there is a problem in the if funktion. what should i do?
Thx