Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

paisjunior1

Formulario de contato

Recommended Posts

Ola, estou com problemas nes action, ele não funciona com o action script 2 e player 9.

fname1.tabIndex = 1;
lname1.tabIndex = 2;
email1.tabIndex = 3;
telno1.tabIndex = 4;
comments1.tabIndex = 5;
var xbox = " Este usuario optou por receber emails informativos!"
var cbox:mx.controls.CheckBox;
var Evento:Object= new Object ();
Evento.click = function (evt){
	if(evt.target.selected == true){
		xbox = " Este usuario optou por receber emails informativos!"
	}else 
		{xbox = ""}
}
cbox.addEventListener('click' ,Evento)
xbox
mailform = "mailform.php";
confirm = "Obrigado por ter entrado em contato...";
action = "send";
Selection.setFocus("fname");
function validate(address) {
	if (address.length>=7) {
		if (address.indexOf("@")>0) {
			if ((address.indexOf("@")+2)<address.lastIndexOf(".")) {
				if (address.lastIndexOf(".")<(address.length-2)) {
					return (true);
				}
			}
		}
	}
	return (false);
}
function formcheck() {
	if ((((email == null)) || (email.length<1)) || (email == "Erro! E-mail invalido.")) {
		email = "Erro! E-mail invalido.";
		action = "";
	}
	if (!validate(email)) {
		email = "E-mail invalido";
		action = "";
	}
	if ((((fname == null)) || (fname.length<1)) || (fname == "Erro! E-mail invalido.")) {
		fname = "Digite seu nome";
		action = "";
	}
	if ((((lname == null)) || (lname.length<1)) || (lname == "Erro! E-mail invalido.")) {
		lname = "Digite seu sobrenome";
		action = "";
	}
	if ((validate(email)) && (email != "Erro") && (fname != "") && (lname != "")) {
		action = "send";
		loadVariablesNum(mailform, 0, "POST");
		gotoAndPlay("wait");
	}
}
stop();

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.