Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/03/2009, 11:00
EsmeraldaRuiz
 
Fecha de Ingreso: mayo-2008
Mensajes: 39
Antigüedad: 15 años, 11 meses
Puntos: 0
Pregunta Pierdo el texto dinámico al subir al servidor

Hola tengo un problema cuando veo mi web desde mi disco duro me carga bien los texto dinámico pero no cuando lo subo al servidor no me los carga.

Muchas gracias por su ayuda.

Código:
_root.contactar.onPress = function() {
	
	filename = "contactar.txt";
	cargador_lv.load(filename);
	_root.nou_text = true;
	_root.carregat_text = false;
};

cargador_lv.onLoad = function(exito) {
	//Si las variables fueron cargadas con exito
	if (exito) {
		        texto.styleSheet = myCSS;
				
				texto.htmlText = this.texto;
				//trace(texto._height);
				texto.autoSize = true;
				//trace("Voy hacer un autosize");
				//trace(texto._height);
				this._height = texto._height;
				//trace(this._height);
				
				_root.texto_cargat = true;
				_root.carregat_text = true;
	           

	} else {
		//Mostrar mensaje de error en el campo de texto
		texto.htmlText = "Error!! :(";
	}
};