<DIV> with embedded flash.swf inside index.php / index.tpl
Hello,
I try to insert some code in index.tpl
Firefox ok!
Opera ok!
IE6 /7 nothing...
The issue is located in VShare index.php or index.tpl, because in a simple html it works fine.
here's the code i'd like to insert:
-----------------------------------------------------------------------------------------------------------------------------------
<script src="_s_/_f_.js" type="text/javascript"></script>
<script src="_s_/_d_.js" type="text/javascript"></script>
<script src="_s_/_b_.js" type="text/javascript"></script>
<div id="fc" style="position: absolute; z-index: 5869; top: 0px; left: 0px; width: 100%; height: 100%;"></div>
<script type="text/javascript">
var JF = new FlashObject("tzami.swf", "tzami", "101.65%", "100%", "8", "#E1E1E1");
JF.addParam("scale", "noscale");
JF.addParam("quality", "high");
JF.addParam("wmode", "transparent");
JF.addParam("allowFullScreen", "true");
JF.addParam("allowscriptaccess", "always");
JF.addParam("type", "application/x-shockwave-flash");
JF.addParam("menu", "false");
JF.addParam("pluginspage", "http://www.macromedia.com/go/getflashplayer&");
JF.addVariable("hb", "1024");
JF.addVariable("hh", "618");
JF.write("fc");
</script>
-----------------------------------------------------------------------------------------------------------------------------------
Re: <DIV> with embedded flash.swf inside index.php / index.tpl
i put the script into header.tpl with the same result.
Re: <DIV> with embedded flash.swf inside index.php / index.tpl
i also try it this way..
have insert this in index.tpl
<div id="fc" style="position: absolute; z-index: 5874; top: 0px; left: 0px; width: 100%; height: 100%;">
<object width="101.65%" height="100%" type="application/x-shockwave-flash" data="tzami.swf">
<param name="movie" value="tzami.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="wmode" value="transparent" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
</object>
</div>
but.. no way in IE