Internet Explorer 9 problems displaying swf
Hello,
I have an html website with SWF pages embedded. (using flash player 9 and as3) It seems to be working well with all browsers except Internet Explorer 9. When viewed in IE9 the swf appears only about 50 pix high and the browser displays the ENTIRE length of my swf. (as opposed to the "active stage area" that I exported) So essentially it IE9 is displaying all of the hidden stuff that I don't want the user to see. And as a result the entire swf height is small..
Anyone have a clue why this may be happening and how to fix?
here is my link:
www.seanlattrell.com
Internet Explorer 9 issue
I should have noted that I am using AS3 Flash CS3 (publishing a flash version10.1.52)
IE9 Scaling issue (margin and padding)?
You mean by turning this:
swfobject.createCSS("html", "height:100%; background-color: #000000;");
swfobject.createCSS("body", "margin:0; padding:0; overflow:hidden; height:100%;");
swfobject.embedSWF(
"SeansWebsite_2012.swf", "flashContent",
"100%", "100%",
swfVersionStr, xiSwfUrlStr,
flashvars, params, attributes);
</script>
</head>
<body>
into this?:
swfobject.createCSS("html", "height:100%; background-color: #000000;");
swfobject.createCSS("body", "margin:100%; padding:100%; overflow:hidden; height:100%;");
swfobject.embedSWF(
"SeansWebsite_2012.swf", "flashContent",
"100%", "100%,100%", "100%",
swfVersionStr, xiSwfUrlStr,
flashvars, params, attributes);
</script>
</head>
<body>