Thursday, 15 August 2013

php - stop the Flash from caching BUT not stop a cookie from being cached -



php - stop the Flash from caching BUT not stop a cookie from being cached -

i have problem flash

"game.swf" not able cache games meant cache cookies. happens if dont clear cache old version of game , see old issues.

i need stop games caching not stop cookie beingness cached.

i used meta tag in html

<meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="expires" content="-1">

any solution.

code here

<div class="obj"> <script language="javascript"> if (ac_fl_runcontent == 0) { alert("this page requires ac_runactivecontent.js."); } else { ac_fl_runcontent( 'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0', 'width', '900', 'height', '675', 'src', 'game', 'quality', 'high', 'pluginspage', 'http://www.macromedia.com/go/getflashplayer', 'align', 'middle', 'play', 'true', 'loop', 'true', 'scale', 'showall', 'wmode', 'window', 'devicefont', 'false', 'id', 'game', 'bgcolor', '#000000', 'name', 'game', 'menu', 'true', 'allowfullscreen', 'false', 'allowscriptaccess','always', 'movie', 'game', 'salign', '' ); //end ac code } </script> <noscript> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="900" height="675" id="game" align="middle"> <param name="allowscriptaccess" value="always" /> <param name="allowfullscreen" value="false" /> <param name="movie" value="game.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /> <embed src="game.swf" quality="high" bgcolor="#000000" width="900" height="675" name="game" align="middle" allowscriptaccess="always" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> </noscript> </div>

php html flash

No comments:

Post a Comment