Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PLEASE HELP ME WITH SIMPLE LOGIN PROGRAMME

Status
Not open for further replies.

47redlands

Programmer
Mar 9, 2010
62
GB
Please help me with simple login programme. I have tried everything to make it work but it is not working. Please help me as I need it URGENTLY TO WORK. A BIG THANK YOU FOR YOU HELP

I have upload the .fla Flash file here:



There are two links on MediaFire and not sure which one to use as this is my first time.
 
Hello I solved this problem by clicking on username input give it a instance name Iuser_input and the input password a instance name Ipass_input

stop();
user_input = "";
pass_input = "";
login_button.onRelease = function() {
if(Iuser_input.text =="salam" && Ipass_input.text == "te5115") {
gotoAndStop(2);
}
else {
gotoAndStop(3);
}
}

THANK YOU
 
I've been told it's good practice to give all your object instances their own unique ID names ;-)

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"

Google Rank Extractor -> Perl beta with FusionCharts
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top