Message Body:

I want an area of a Flash website to be restricted by a password request using a script like this:

on (release) {
password = password.toLowerCase();
if (password=="mits") {
gotoAndPlay ("Scene 2", 1);
} else if (password=="baz") {
gotoAndPlay ("Scene 3", 1);
}
}

What I want to know is how easy it would be to hack the .swf file and get the password(s)?

Thanks,

JB