Respuesta: cómo hacer que un .swf en concreto no se guarde en caché en principio lo cargo así:
//load Movie Behavior
if(this.noticiario == Number(this.noticiario)){
loadMovieNum("noticias.swf",this.noticiario);
} else {
this.noticiario.loadMovie("noticias.swf");
}
//End Behavior
¿Sería entonces así? ¿o tengo que ponerlo donde """this.noticiario.loadMoive""" también?:
//load Movie Behavior
if(this.noticiario == Number(this.noticiario)){
nocache = "?nocaching="+random(65000);
loadMovieNum("noticias.swf"+nocache,this.noticiari o);
} else {
this.noticiario.loadMovie("noticias.swf");
}
//End Behavior |