talvez eu não tenha sido bem explicito o recebe é a variável que recebe do sendAndLoad,vou postar o código completo: envia= new LoadVars();
recebe= new LoadVars();
recebe.onLoad = function(){
trace(recebe.mensagem);
if (recebe.mensagem=="sucesso")
{
mensagem_mc.resposta.text="Email Enviado";
}
else
{
mensagem_mc.resposta.text="Email não Enviado";
}
};
sendBtn.onRelease=function(){
if(nome.text!="" && from.text!="" && msg.text!=""){
envia.nome = nome_it.text;
envia.from = from_it.text;
envia.msg = msg_it.text;
envia.sendAndLoad("http://zipzapgrupo.com/mail.php",recebe,"POST");
nome.text=" ";from.text=" ";msg.text=" ";
}
}