Is there any way to use percentages with the fix found here:
http://www.kirupa.com/developer/flash8/flash_fix.htm
I’ve tried putting in percentages and stuff so that my code looks like this:
<script type=“text/javascript” src=“flashobject.js”></script>
<div id=“flashcontent” style=“width: 100%; height: 100%”></div>
<script type=“text/javascript”>
var fo = new FlashObject(“MIHIntro2.swf”, “animationName”, “100%”, “100%”, “8”, “#FFFFFF”);
fo.addParam(“allowScriptAccess”, “sameDomain”);
fo.addParam(“quality”, “high”);
fo.addParam(“scale”, “noscale”);
fo.addParam(“loop”, “false”);
fo.write(“flashcontent”);
</script>
It doesn’t seem to be working. What I would like is for it to expand to 100% of the page. Any idears?
Thanks!