Search tutorials
First create a text box, and open the properties, then don't set to dynamic but input text box.
Then write in password as variable name, and change the thing in the drop down list where is stands: Single line to password
Then you can draw a rectangle with a different colour than the text around the text box.
OK, now for the button.
First Draw what you want as a button, then hit F8, select button, and hit "ok".
The name is no matter, you can call it submit or something
Now for the editing:
Rightclick on the button and select edit, insert a new keyframe in every frame, and it can change colour in every frame to, if you want.
Create a new layer in the button, and make sure it's on top, now write a text on the button, make sure the text type is set to static.
Then go back to scene 1.
and insert this script in your button
Code:
on (release) {
if (password eq "yourpassword") {
gotoAndStop(CORRECT);
} else {
gotoAndStop(WRONG);
}
}
Now for editing the code, change "yourpassword" to what you want as password, but keep the "" .
change CORRECT to the frame you want to go to when the correct answer is inputted. (e.g frame 2)
and the WRONG to frame you want to go to if it's a wrong answer. (e.g frame 3)
Open the actions panel for the frame with the password in and write
Code:
stop();
That makes your movie stop on that frame and if you want your movie to play when the correct answer is inputted, but a
Code:
play();
action in the frame it goes to, or change the correct answer gotoAndStop thing, to gotoAndPlay.
//password code by Johan Peter Kraugerud aka JpK aka api667(on newgrounds.com)
| » Level Intermediate |
|
Added: 2004-12-17 Rating: 7 Votes: 25 |
| » Author |
| I like doing extras menus and stuff and I love flash. |
| » Download |
| Download the files used in this tutorial. |
| Download (0 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!