サンプルコードがあります:
<a title="click" href="test.swf" class="game-in-link" style="background:#000;width:100%;height:450px;display:block;">CLICK ON PLAY</a>
<div>
<!--
<object width="100%" height="450">
<param name="movie" value="test.swf"></param>
<param name="wmode" value="transparent"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="test.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="100%" height="450"></embed>
</object>
-->
</div>
そしてjquery:
// Get SWF file
jQuery("a.game-in-link").one('click', function () {
var anchor = jQuery(this);
anchor.html(anchor.html().replace('<div><!--', '').replace('--></div>', ''));
anchor.removeAttr('href');
return false;
});
=> エラーで test.swf をファイルできません。結果を含む SWF ファイルを取得する方法は?
<object width="100%" height="450">
<param name="movie" value="test.swf"></param>
<param name="wmode" value="transparent"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="test.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="100%" height="450"></embed>
</object>