Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/04/2003, 13:52
EDGARDO MOGUELLA
 
Fecha de Ingreso: noviembre-2001
Ubicación: Groningen
Mensajes: 175
Antigüedad: 22 años, 5 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);
}