Showing MC_alpha 100%?

hey all,

i’m wanting to show my mc at 100% alpha ONLY IF the name and/or email rn’t filled in…

i have this code atm on my submit button but it doesn’t seem to be working for some reason??

on (release, keyPress "<Enter>") {
    if (fname_txt == "" && email_txt == "") {
        status = "Begin Login Process - Wait...";
        loadVariablesNum("reglogin.php", 0, "POST");
        //loadVariablesNum("register2.php", 0, "POST");
        loadVariablesNum("questions2.php", 0, "GET");
        loadVariablesNum("answers.php", 0, "GET");
        //_root.gotoAndStop("quiz");
        _root.details._alpha = 100;
        } else {
            _root.gotoAndStop("quiz");
        }
}

fname_txt and email_txt is the instance names of the input fields fname and email are the variables for them…any ideas anyone?

cheers :slight_smile: