Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/09/2004, 14:19
Avatar de davidMS
davidMS
 
Fecha de Ingreso: abril-2003
Ubicación: Chepe
Mensajes: 202
Antigüedad: 21 años
Puntos: 0
no ya lo arregle, gracias:
varReceiver = new LoadVars();
varReceiver.onLoad = function (success) {
trace("Total es" + this.total);
trace("Respuestas Si:" + this.answer_yes);
trace("Respuestas No:" + this.answer_no);
trace("% Si:" + this.por_yes);
trace("% No:" + this.por_no);
if (success) {
stable_total=this.total;
stable_answer_yes=this.answer_yes;
stable_answer_no=this.answer_no;
stable_por_yes=this.por_yes;
stable_por_no=this.por_no;
gotoAndPlay(2);
} else {
stable_total=0;
stable_answer_yes=0;
stable_answer_no=0;
stable_por_yes=0;
stable_por_no=0;
stop();
}