Four .swf files, (a, b, c and d)
four passwords ( a, b, c, and d)
one input box.
Depending on password keyed in the respective swf is loaded into an mc.
How does one do this without using database?
on (release) {
if (_root.textbox.text == Password1) {
//Load Movie 1
}
if (_root.textbox.text == Password2) {
//Load Movie 2
}
}
etc etc
(put that on the submit button)
Dude, thanks, but where do I declare the passwords?
Password1 and Password2 are replaced with your passwords.