I’m getting this error when I use the SWFObject method with my flash. When you click on anything the error happens. It only happens in IE6 and IE7. Firefox is ok. Here’s is the link to my test site.
http://www.gbkpartnership.com/wes/test/noodlesite
Here’s my code.
<div id="flash">
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent3">
</div>
<script type="text/javascript">
var so = new SWFObject("testGirl2.swf", "testGirl2", "320", "213", "8");
so.addParam("quality", "high");
so.addParam("wmode", "transparent");
so.write("flashcontent3");
</script>
</div>
</body>
</html>