Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/05/2006, 09:58
maxlox
 
Fecha de Ingreso: mayo-2006
Mensajes: 6
Antigüedad: 17 años, 11 meses
Puntos: 0
No me sale formulario flash ayuda

Hola despues de probar varios post no logro comprender como hacer funcionar un formulario de informacion. Tengo esto en el form:

label_01 = "Tu nombre";
label_02 = "Tu e-mail";
label_03 = "Comentarios";

text1 = label_01;
text2 = label_02;
text3 = label_03;

this.onEnterFrame = function() {

text_field_1.onSetFocus = function() {
if (text1 == label_01) {
text1 = "";
}
};
text_field_1.onKillFocus = function() {
if (text1== "") {
text1 = label_01;
};
};

text_field_2.onSetFocus = function() {
if (text2 == label_02) {
text2 = "";
}
};
text_field_2.onKillFocus = function() {
if (text2 == "") {
text2 = label_02;
}
};

text_field_3.onSetFocus = function() {
if (text3 == label_03) {
text3 = "";
}
};
text_field_3.onKillFocus = function() {
if (text3 == "") {
text3 = label_03;
}
};
};

Me funciona bien todo el codigo que os he puesto arriba,tasmbien he hecho un boton de enviar, pero no me aclaro con el codigo que he de poner para que me envie el formulario a una direccion email. Despues de probar varias configuraciones no logro sacarlo.

Os lo agradecería un monton