Featured FLA
» Author: Nick Kouvaris
» Title: Znax
» Description: Znax is a board game. Click 4 tiles of the same color and form squares as big as you can. You will erase all the tiles inside the square and collect points. Get maximum score if you make a square with game edges.
» More by:Nick Kouvaris
Featured Site
» Author Agence WOP Digital Agency
» Title: Electricdrum
» Description: French WOP Agency, 3D websites, Flash (Papervision, Away 3D), event or institutional projects. The agency operates on all digital projects: consulting, design, graphic design, development, online communication. The WOP agency follows you on the implementation of original, creative and optimized digital projects.
FlashKit's FlashFoundry.com provides more than 100,000 professional Flash components, templates, videos, animations and audio files, all for one subscription fee. This huge compilation of immediately usable .SWF and .FLA files contains thousands of variables and options.
For a limited time FlashKit members can subscribe to FlashFoundry.com for 1 year for only $74.95, a savings of 25% off the regular subscription price!
Dynamic Multiuser Login WITHOUT any php, perl, txt etc Author:Neilio500
Page 1
1
Welcome to the Dynamic Multiuser Login Tutorial.
In this tutorial you will acheive in making a multiuser login. This tutorial is Part A - Multi username and password login
other tutorials include;
A) Multi username and password login
B) Just a multiuser password login
C) Multi username and password login WITH dynamic message box
You have probably come to this page because all the multiuser logins you've seen so far, you've needed to use a txt file or php, but what if you can't use them for some reason?? well you've come to the right place.
I have found a solution that does not use any php or txt file or cgi scripting, it only uses flash.
The only one side effect i've found is that to add users, you need to go back into flash and edit the file, but if you can not use php or any scripting, then i'm guessing you'll be quite happy with going back and editing the file!
OK, enough with the chit chat! let's get down to business...
PART A - A Multi Username AND Password login.
Step 1:
First off, create two input text boxes, making sure you set the second one from a single line text box to a password text box.
Step 2:
Set the variable for the first one as "user".
Set the variable the the second one as "pass".
Step 3:
Create any type of button that you would like to use and place it on the stage.
CHECK
You should now have two input text boxes with the variables "user" and "pass", and a button on the stage.
If not please repeat steps 1 - 3.
Step 4:
In the frame, put the follow actions;
stop();
Step 5:
In the button>, put the following actions;
on (release, keyPress "") {
if (user == "111" && pass == "111") {
//change user and pass values to what you want
gotoAndPlay("enter");
//change this to what you want
//eg getURL();
} else if (user == "222" && pass == "222") {
//change user and pass values to what you want
gotoAndPlay("enter");
//change this to what you want
//eg getURL();
} else if (user == "333" && pass == "333") {
//change user and pass values to what you want
gotoAndPlay("enter");
//change this to what you want
//eg getURL();
} else if (user == "444" && pass == "444") {
//change user and pass values to what you want
gotoAndPlay("enter");
//change this to what you want
//eg getURL();
} else if (user == "555" && pass == "555") {
//change user and pass values to what you want
gotoAndPlay("enter");
//change this to what you want
//eg getURL();
// TO ADD MORE USERS, SIMPLY ADD ANOTHER...
// } else if (user == "" && pass == "") {
// change user and pass values to what you want
// gotoAndPlay("enter");
// change this to what you want
// eg getURL();
// IN THIS SPACE
} else {
gotoAndStop(1);
//change this to the intial login frame
user="";
pass="";
//leave these if you want the input boxes
//to be reset to nothing if the details
//were entered wrong
}
}
CHECK
You should now have two input text boxes with the variables "user" and "pass", and a button on the stage.
If not please repeat steps 1 - 3.
ALSO
the frame should have the above actions and the button should have the above actions
If not please repeat steps 4 + 5
Thank you for trying out this tutorial.
If you have ANY problems at all, please email me, i WILL help you out.