Hello, friends. I’m creating a mailing list and I have everything I think I need, except for a minor detail that turned major.
My submit button has a function to check for an email address and make sure that the user actually entered something. I have a stop(); action in an ‘if’ statement and it simply won’t stop. I you feel like taking a look, I’d really appreciate it. Cheers! 
form.email_txt.text = "Your email address";
form.email_txt.onSetFocus = function(){
form.email_txt.text = "";
}
form.email_txt.onKillFocus = function(){
if(form.email_txt.text == "" || form.email_txt.text == undefined){
form.email_txt.text = "Your email address";
}
}
//**********************************
//********bttn props ***************
//**********************************
send_bttn.onRelease = function(){
if(form.email_txt.text == "" || form.email_txt.text == undefined || form.email_txt.text == "Your email address"){
form.email_txt.text = "You didn't enter anything...";
trace("i should stop here but i won't!");
stop();
}
var searchString:String = form.email;
var index:Number;
index = searchString.indexOf("@");
// trace(index);
if(index == -1){
form.email_txt.text = "Seriously, don't be an ***";
stop();
}
if(index >=3){
play();
}
}
stop();