27/04/2003, 13:52
|
| | Fecha de Ingreso: noviembre-2001 Ubicación: Groningen
Mensajes: 175
Antigüedad: 23 años, 2 meses Puntos: 0 | |
Ok solucionado....
Modifique la funcion enviar...
....
....
enviar.mensaje = mensaje;
enviar.onLoad = function() {
_root._returnValue = this.returnValue;
if(this.returnValue==1){
status = this.msg; //"Su Mensaje Fue enviado Correctamente";
borrar();
}else{
status = this.msg; //"";
}
_root.gotoAndPlay(2);
};
.....
.....
y en el frame 2
if(_root._returnValue == 0){
this.gotoAndPlay(1); //<-aca es donde tengo el formulario
}else{
this.gotoAndStop(_currentFrame + 1);
} |