Keypad-keycode verification

Hi guys, Iā€™m stuck, please helpā€¦

Iā€™m creating a keypad which uses buttons to enter numbers into an input textfield.

I can get the buttons to enter numbers into the field but canā€™t figure out how it knows the code is correct.

Iā€™ve attached the fla to explain what I mean.

Code used so far:

On button 1:
[INDENT]on (press)
{
this.number=ā€˜1ā€™
}

on (press)
{
_root.code.text+=this.number;
}[/INDENT]

on the Submit button:
[INDENT]on (release)
{
if (code == ā€œ111ā€)
{
gotoAndStop(10);
}

else
{
gotoAndStop(1);
}
}[/INDENT]

If youā€™re dealing with numbers, you shouldā€™ve used the textboxes variable instead of instance name. I donā€™t know, itā€™s sort of confusing but try this instead of what you had for the submit button:

on (release) {
    if (code**.text** == "111") {
      gotoAndStop(10);
    } else {
      gotoAndStop(1);
   }
}

Oh yeah should have thought of that, thanks mate, works fine now.
Cheers :slight_smile:

Lol no problem ;).