Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/05/2010, 10:58
crack16
 
Fecha de Ingreso: septiembre-2005
Mensajes: 52
Antigüedad: 19 años, 2 meses
Puntos: 0
Pregunta problema con formulario

estoy haciendo un formulario
pero me sale este error al rellenar los datos



me dice

que escriba bien mi nombre y apellido


ese es el accion q esta en fotograma

Código AS:
Ver original
  1. stop ();
  2. this.rpta.text = "";
  3. this.enviar.onRelease = function ()
  4. {
  5.     var _loc6 = "";
  6.     if (this._parent.nombre.text == "" || this._parent.telefono.text == "" || this._parent.ciudad.text == "" || this._parent.distrito.text == "" || this._parent.direccion.text == "" || this._parent.correo.text == "" || this._parent.hijos.text == "")
  7.     {
  8.         _loc6 = "Llene todos los campos";
  9.         var _loc7 = 1;
  10.     }
  11.     else
  12.     {
  13.         var _loc8 = this._parent.nombre.length;
  14.         var _loc4 = this._parent.nombre.text;
  15.         _loc7 = 0;
  16.         for (var _loc3 = 0; _loc3 < _loc8; ++_loc3)
  17.         {
  18.             if (!(_loc4.charCodeAt(_loc3) >= 65 && _loc4.charCodeAt(_loc3) <= 90 || _loc4.charCodeAt(_loc3) >= 97 && _loc4.charCodeAt(_loc3) <= 122 || _loc4.charAt(_loc3) == " "))
  19.             {
  20.                 _loc6 = "Escriba bien su nombre y apellidos";
  21.                 _loc7 = 1;
  22.                 break;
  23.             } // end if
  24.         } // end of for
  25.     } // end else if
  26.     if (_loc7 == 0)
  27.     {
  28.         objdata = new LoadVars();
  29.         objdata.onLoad = function ()
  30.         {
  31.             _root.rpta.text = this.mensaje;
  32.             _root.nombre.text = "";
  33.             _root.telefono.text = "";
  34.             _root.ciudad.text = "";
  35.             _root.distrito.text = "";
  36.             _root.direccion.text = "";
  37.             _root.correo.text = "";
  38.             _root.hijos.text = "";
  39.             _root.hijo1.text = "";
  40.             _root.edad1.text = "";
  41.             _root.cumple1.text = "";
  42.             _root.hijo2.text = "";
  43.             _root.edad2.text = "";
  44.             _root.cumple2.text = "";
  45.             _root.hijo3.text = "";
  46.             _root.edad3.text = "";
  47.             _root.cumple3.text = "";
  48.         };
  49.         var _loc5 = "";
  50.         _loc5 = "Nombre y Apellidos: " + this._parent.nombre.text + " \n";
  51.         _loc5 = _loc5 + ("Telefono: " + this._parent.telefono.text + " \n");
  52.         _loc5 = _loc5 + ("Ciudad: " + this._parent.ciudad.text + " \n");
  53.         _loc5 = _loc5 + ("Distrito: " + this._parent.distrito.text + " \n");
  54.         _loc5 = _loc5 + ("Direccion: " + this._parent.direccion.text + " \n");
  55.         _loc5 = _loc5 + ("E-mail: " + this._parent.correo.text + " \n");
  56.         _loc5 = _loc5 + ("Hijos: " + this._parent.hijos.text + " \n");
  57.         _loc5 = _loc5 + ("Primer hijo: " + this._parent.hijo1.text + " \n");
  58.         _loc5 = _loc5 + ("Edad: " + this._parent.edad1.text + " \n");
  59.         _loc5 = _loc5 + ("Cumple: " + this._parent.cumple1.text + " \n");
  60.         _loc5 = _loc5 + ("Segundo Hijo: " + this._parent.hijo2.text + " \n");
  61.         _loc5 = _loc5 + ("Edad: " + this._parent.edad2.text + " \n");
  62.         _loc5 = _loc5 + ("Cumple: " + this._parent.cumple2.text + " \n");
  63.         _loc5 = _loc5 + ("Tercer Hijo: " + this._parent.hijo3.text + " \n");
  64.         _loc5 = _loc5 + ("Edad: " + this._parent.edad3.text + " \n");
  65.         _loc5 = _loc5 + ("Cumple: " + this._parent.cumple3.text + " \n");
  66.         objdata.contenidox = _loc5;
  67.         objdata.emailx = this._parent.correo.text;
  68.         objdata.sendAndLoad("../mail2.php",objdata,"POST");
  69.         this._parent.rpta.text = "Enviando informacion...";
  70.     } // end if
  71.     if (_loc7 == 1)
  72.     {
  73.         this._parent.rpta.text = _loc6;
  74.     } // end if
  75. };
  76. this.borrar.onRelease = function ()
  77. {
  78.     this._parent.nombre.text = "";
  79.     this._parent.telefono.text = "";
  80.     this._parent.ciudad.text = "";
  81.     this._parent.distrito.text = "";
  82.     this._parent.direccion.text = "";
  83.     this._parent.correo.text = "";
  84.     this._parent.hijos.text = "";
  85.     this._parent.hijo1.text = "";
  86.     this._parent.edad1.text = "";
  87.     this._parent.cumple1.text = "";
  88.     this._parent.hijo2.text = "";
  89.     this._parent.edad2.text = "";
  90.     this._parent.cumple2.text = "";
  91.     this._parent.hijo3.text = "";
  92.     this._parent.edad3.text = "";
  93.     this._parent.cumple3.text = "";
  94. };

osea yo creo q poniendo cualquier nombre aun q sea un solo nombre tendria enviarlo


PD: espero que me puedan ayudar gracias