> * (I am not sure of this one) But I think that the assets loaded inside an > app at runtime are not cached so they will take the same time the next time > you load them unlike the embed assets.
The web browser WILL cache SWF's loaded at runtime (from the same domain). This can pose a problem when you upload a newer version of the SWF to your server because the user may have the old version cached. One solution is something like this in the .htaccess file: # CACHE AGES IN 24 HOURS for specified file types (86400) # CACHE AGES IN 7 DAYS for specified file types (604800) <FilesMatch "\.(pdf|swf|js|css|jpg|jpgeg|gif|png|swc|xml|txt)$"> Header set Cache-Control "max-age=86400" </FilesMatch> _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
