Here we go!
STEP 1:
Open a blank flash document, make sure you have one layer, and one frame.
STEP 2:
In frame 1, create an "INPUT" text box, and in its variable field, call it
"password".
STEP 3:
Repeat STEP 2, but changing the variable from "username" to "password".
STEP 4:
Create a button, call it signInButton.
STEP 5:
Create another text box, this time a "DYNAMIC" text box, and call its variable,
"mess".
MAKE IT LOOK SOMETHING LIKE THIS
STEP 6:
Right-click on the button, and goto "ACTIONS". Copy the following script into
the actionscript box.
on (release, keyPress "
if (username == "flashkit" and password === "test") {
_parent.gotoAndStop(1);
mess = "Welcome "+username+"!";
} else if (username !== "flashkit" or password !== "test") {
mess = "Some info was wrong little dude!;
}
}
Now, create a new frame, in the second frame position. On this page, put whatever information you want on it!
STEP 8:
Now, add a new layer, call it "actions". Right click on frame 1 in the "actions" layer and go to "ACTIONS" in the menu. In the ActionScript box, add the following code
stop();
IT SHOULD LOOK LIKE THIS
AND VOILA, YOUR DONE.
You can edit the information above, like changing the username and passwords, and other stuff, like the "mess" message.
» Level Basic |
Added: 2005-02-15 Rating: 4.67 Votes: 21 |
» Author |
15/M/Australia |
» Download |
Download the files used in this tutorial. |
Download (0 kb) |
» Forums |
More help? Search our boards for quick answers! |