Safe Flash Login
Safe Login Tutorial
The normal or common "Login tutorials" will show you how to create a hackable login site...
Thisone include's a secure function.
Mostly you can just rightclick and Play to show the Secret Content....
Ofcourse you dont want to happen this to YOUR login...
It will get something like this, but the Personalyze your login function is only to show this works.
Well to start create the background and text (recommend it in a new layer).
Set the type to "Input Text"
To get the Password input text, change in the properties "Multiline no wrap" to "Password"
And now add the Var,
While selecting the Username text type in:
Var:
While selecting the Password text type in:
Var:
Now create a Button.
And add an DYNAMIC Text under your login screen (this is the Status) and change the var into:
Var:
The scripting part
Now open the Actions Panel and select your Submit button.
Type these actions:
on(release){
if (user == "DEFINE"){
if (pass == "DEFINE"){
gotoAndStop(2);
security = 1
}
}
}
DEFINE you have to define for yourself... this is your login information...
Now select Frame 1 and add a variable and a stop action with these actions:
stop();
set (security, 0);
Adding your secret content
Now we go and put your secret content...
Add a new Frame (Frame 2) and put an Movieclip into it
In Frame 1 of the movieclip place the (Static) text:
Login failed... Username didnt match the Password...
Add the following actions to Frame 1:
if (security == 1){
gotoAndPlay(2);
}
else{
stop();
}
Now on Frame 2 you can put your Secret content but DONT forget to add a stop action!
Further you can use the Status, select the Button and open the Actions panel:
on(release){
if (user == "DEFINE"){ //Change DEFINE for your own Username
if (pass == "DEFINE"){ //Change DEFINE for your own Password
gotoAndStop(2);
security = 1
}
}
else{
_root.Status = "Username didnt match the Password..."
}
if (user == undefined){
_root.Status = "Forgot to fill in?"
}
}
Now we have something like this:
Username and Password are "DEFINE".
» Level Basic |
Added: 2005-11-23 Rating: 6 Votes: 6 |
» Author |
i am 16 years old |
» Download |
Download the files used in this tutorial. |
Download (0 kb) |
» Forums |
More help? Search our boards for quick answers! |