If I add the .text after the instancename, the input does not recognise the keyboard input as well. I have put your keyboard in the same swf. Input is still not recognised as correct. Please help!

submit.onRelease = function() 
{
    if(instancename.text =="9")
    {    //if  text input is correct
        _root.total = _root.total + 100;
    }
    else
    {
        _root.total = _root.total - 10;
    }
}
3 months ago