Return to Snippet

Revision: 2793
at August 9, 2007 00:36 by kyokutyo


Updated Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>sample</title>
<script src="/pathto/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="/pathto/AC_ActiveX.js" type="text/javascript"></script>
<style type="text/css">
<!--
body {
  margin:0;
  padding:0;
  position:absolute;
  width:100%;
  height:100%;
}
-->
</style>

</head>
<body>
<script type="text/javascript">
  AC_FL_RunContent(
      'codebase',
      'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
      'width','100%',
      'height','100%',
      'src','filename',
      'quality','high',
      'pluginspage','http://www.macromedia.com/go/getflashplayer',
      'wmode','opaque',
      'movie','filename'
  ); //end AC code
</script>
<noscript>
  <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="sample" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="sample.swf" />
    <param name="quality" value="high" />
    <embed src="sample.swf" quality="high" width="100%" height="100%" name="sample" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
  </object>
</noscript>
</body>
</html>

Revision: 2792
at April 16, 2007 05:57 by kyokutyo


Initial Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis" />
<title>sample2</title>
<script src="/pathto/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="/pathto/AC_ActiveX.js" type="text/javascript"></script>
<style type="text/css">
<!--
body {
  margin:0;
  padding:0;
  position:absolute;
  width:100%;
  height:100%;
}
-->
</style>

</head>
<body>
<script type="text/javascript">
  AC_FL_RunContent(
      'codebase',
      'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
      'width','100%',
      'height','100%',
      'src','filename',
      'quality','high',
      'pluginspage','http://www.macromedia.com/go/getflashplayer',
      'movie','filename'
  ); //end AC code
</script>
<noscript>
  <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="sample" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="sample.swf" />
    <param name="quality" value="high" />
    <embed src="sample.swf" quality="high" width="100%" height="100%" name="sample" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
  </object>
</noscript>
</body>
</html>

Initial URL


Initial Description
FirefoxはHTML4.0以外のDOCTYPE宣言つけると100%表示のFlashが一部しか表示されないバグがあるそう。
参考サイト
http://uu-uu.com/blog/2006/10/flash_100another_htmllint.html

Initial Title
100%Flash - xhtml1.0

Initial Tags
xhtml, flash

Initial Language
HTML