y espero que me puedan ayudar con el AS
Pd: yo he estado usando esos contactenos pero convertidos del swf y me generaban problemas y en si quiero aprender hacer uno desde cero
y espero que me puedan ayudar.
gracias
PD: esos archivos tienen estos codigos el AS
Código AS:
Ver original
stop (); this.rpta.text = "Escriba sus datos correctamente por favor. (*) Campos obligatorios"; this.enviar.onRelease = function () { var _loc6 = ""; if (this._parent.nombre.text == "" || this._parent.telefono.text == "" || this._parent.email.text == "" || this._parent.hijo.text == "" || this._parent.edad.text == "" || this._parent.fecha.text == "" || this._parent.tema.text == "") { _loc6 = "Llene todos los campos"; var _loc7 = 1; } else { var _loc8 = this._parent.nombre.length; var _loc4 = this._parent.nombre.text; _loc7 = 0; for (var _loc3 = 0; _loc3 < _loc8; ++_loc3) { if (!(_loc4.charCodeAt(_loc3) >= 65 && _loc4.charCodeAt(_loc3) <= 90 || _loc4.charCodeAt(_loc3) >= 97 && _loc4.charCodeAt(_loc3) <= 122 || _loc4.charAt(_loc3) == " ")) { _loc6 = "Escriba bien su nombre y apellidos"; _loc7 = 1; break; } // end if } // end of for } // end else if if (_loc7 == 0) { objdata = new LoadVars(); objdata.onLoad = function () { _root.rpta.text = this.mensaje; _root.nombre.text = ""; _root.direccion.text = ""; _root.telefono.text = ""; _root.movil.text = ""; _root.email.text = ""; _root.hijo.text = ""; _root.edad.text = ""; _root.fecha.text = ""; _root.tema.text = ""; _root.comentario.text = ""; }; var _loc5 = ""; _loc5 = "Nombre Papa o Mama: " + this._parent.nombre.text + " \n"; _loc5 = _loc5 + ("E-mail: " + this._parent.email.text + " \n"); _loc5 = _loc5 + ("Telefono: " + this._parent.telefono.text + " \n"); _loc5 = _loc5 + ("Movil: " + this._parent.movil.text + " \n"); _loc5 = _loc5 + ("Direccion: " + this._parent.direccion.text + " \n"); _loc5 = _loc5 + ("Nombre Hijo: " + this._parent.hijo.text + " \n"); _loc5 = _loc5 + ("Edad: " + this._parent.edad.text + " \n"); _loc5 = _loc5 + ("Fecha del Evento: " + this._parent.fecha.text + " \n"); _loc5 = _loc5 + ("Tema del Evento: " + this._parent.tema.text + " \n"); _loc5 = _loc5 + ("Comentario: " + this._parent.comentario.text + " \n"); objdata.contenidox = _loc5; objdata.emailx = this._parent.email.text; objdata.sendAndLoad("mail.php", objdata, "POST"); this._parent.rpta.text = "Enviando informacion..."; } // end if if (_loc7 == 1) { this._parent.rpta.text = _loc6; } // end if }; this.borrar.onRelease = function () { this._parent.nombre.text = ""; this._parent.direccion.text = ""; this._parent.telefono.text = ""; this._parent.movil.text = ""; this._parent.email.text = ""; this._parent.hijo.text = ""; this._parent.edad.text = ""; this._parent.tema.text = ""; this._parent.fecha.text = ""; this._parent.comentario.text = ""; };