Thanks for the response! I can't use anything that involves modification to the Flash source. The .
swf file is being created for me, and I have no Flash dev environment. I found this
php code:
Code:
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
session_start();
header("Cache-Control: private");
which is supposed to be effective in preventing caching, but I have yet to test it. Another possibility would be to have a second flash file as a wrapper, and have it call the main file, but I'd have to have someone write that for me.