Código:
el cual, no funcionavar recibir_lv:LoadVars = new LoadVars(); recibir_lv.onLoad = function(event){ hh = this.hora1; } _global.hhh=hh; //esta linea e simportante this['nodisponible'+hhh]._visible=false;
la variable hora1 llega desde un .php, y si tiene contenido, ya que si la pongo en un Texto Dinamico, me da el valor 3
ok. si cambio el codigo por esto:
Código:
como ven, var recibir_lv:LoadVars = new LoadVars(); recibir_lv.onLoad = function(event){ hh = this.hora1; } _global.hhh=3; //esta linea e simportante this['nodisponible'+hhh]._visible=false;
cambie esto
_global.hhh=hh;
por esto
_global.hhh=3;
y asi, si me funciona, me desaparece la instancia.
me imagino, que antes de signarle un valor a dicha variable, tengo que asignarle primero un tipo de variable, o algo similar
si me pueden ayudar, se los agradeceria muchisimo
Gracias