07/07/2005, 15:19
|
| | Fecha de Ingreso: enero-2005
Mensajes: 16
Antigüedad: 20 años Puntos: 0 | |
y ahora q?? mira, sabes q me funciona pero en local cada vez q actualizo en el .xml cambia automaticamente en flash, pero no me funciona en el servidor... tienes idea d por q?
este es el codigo q tengo en mi .fla:
var refresh_time:Number = 2000;//1000 = 1 Segundo
newsBox.htmlText = "...loading";
function init() {
wait = setInterval(loadContent, refresh_time);
}
function loadContent() {
loadText = new LoadVars();
loadText.load("prueba.xml");
loadText.onLoad = function(success) {
if (success) {
// trace(success);
newsBox.html = true;
newsBox.htmlText = this.myNews;
}
}
}
init();
sabes en q estoy fallando?? gracias d antemano... |