I have configured html code for a site entirely designed in flash to work in [FONT=“Arial”]percentage ;
I´ve tried to replace width & height in the script pasted bellow by 100% ;
it is strange that the site has not loaded , but a sound file has done it as I can hear the sound ;
perhaps someone could help me out ;
thanks[/FONT]
<head>
<script language=“javascript”>AC_FL_RunContent = 0;</script>
<script src=“flashobjects/flashobject.js” language=“javascript”></script>
</head>
<script language=“javascript”>
if (AC_FL_RunContent == 0) {
alert(“This page requires AC_RunActiveContent.js. In Flash, run "Apply Active Content Update" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.”);
} else {
AC_FL_RunContent(
‘codebase’, ‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0’,
‘width’, ‘%100’,
‘height’, ‘%100’,
‘src’, ‘famigliarocco_0’,
‘quality’, ‘high’,
‘pluginspage’, ‘http://www.macromedia.com/go/getflashplayer’,
‘align’, ‘middle’,
‘play’, ‘true’,
‘loop’, ‘true’,
‘scale’, ‘showall’,
‘wmode’, ‘window’,
‘devicefont’, ‘false’,
‘id’, ‘famigliarocco_0’,
‘bgcolor’, ‘#fffff4’,
‘name’, ‘pool_mc_mouseon’,
‘menu’, ‘true’,
‘allowScriptAccess’,‘sameDomain’,
‘movie’, ‘flash/famigliarocco_0’,
‘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=8,0,0,0” width=“%100” height=“%100” id=“famigliarocco_0” align=“middle”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“movie” value=“flash/pool_mc_mouseon.swf” /><param name=“quality” value=“high” /><param name=“bgcolor” value=“#ffffff” /> <embed src=“flash/famigliarocco_0.swf” quality=“high” bgcolor=“#fffff4” width=“%100” height=“%100” name=“famigliarocco_0” align=“middle” allowScriptAccess=“sameDomain” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>
</noscript>
…