Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/12/2009, 10:00
Avatar de Sergestux
Sergestux
 
Fecha de Ingreso: agosto-2007
Ubicación: Tapachula
Mensajes: 1.218
Antigüedad: 17 años, 3 meses
Puntos: 20
Respuesta: Usando XAMPP, el .mxml no lo refresca...

No le entiendo bien a tu problema. Pero parece que tu problema es por el explorador web que te guarda la version de tu pelicula flash en cache (para que la descarga sea rapida).

Quizas con esto soluciones tu problema Configuring the client environment

Código:
// Set Cache-Control to no-cache.
response.setHeader("Cache-Control", "no-cache");
// Prevent proxy caching.
response.setHeader("Pragma", "no-cache"); 
// Set expiration date to a date in the past.
response.setDateHeader("Expires", 946080000000L); //Approx Jan 1, 2000
// Force always modified.
response.header("Last-Modified", new Date());