28/06/2009, 20:57
|
| | Fecha de Ingreso: junio-2009
Mensajes: 3
Antigüedad: 15 años, 4 meses Puntos: 0 | |
Ayuda con un script necesito si alguen me puede ayudar con esto
// Action script...
// [Action in Frame 171]
function enviar()
{
trace (t_nombre.text);
datos_email.nombre = t_nombre.text;
datos_email.email = t_email.text;
datos_email.texto = t_texto.htmlText;
datos_email.estado = "";
datos_email.onLoad = function ()
{
trace (this);
trace (this.estado);
if (this.estado == "enviado")
{
gotoAndStop(222);
}
else
{
gotoAndStop(223);
} // end else if
};
datos_email.sendAndLoad("enviar_email.php", datos_email, "post");
gotoAndStop(221);
} // End of the function
System.useCodepage = false;
if (datos_email == null)
{
datos_email = new LoadVars();
datos_email.nombre = "";
datos_email.email = "";
datos_email.texto = "";
datos_email.estado = "";
} // end if
t_nombre.text = datos_email.nombre;
t_email.text = datos_email.email;
t_texto.htmlText = datos_email.texto;
this.b_enviar.onPress = enviar;
stop ();
si alguien me pudiese ayudar con el archivo enviar_email.php y como cinfigurarlo para que me llegue al mail porfavor
de ante mano muchas gracias |