HI,
I’m running a dynamic flash (AS3) site locally and just discovered that it doesn’t work on Internet Explorer 7 or 8. I really need it to operate on Internet Explorer on my local machine.
It works fine online! I’ve added my .swf file, even the folder to my settings in the [SIZE=2]“Global Security Settings panel[/SIZE]” on the Adobe website. Nothing changes.
Please help.:cry3:
Best regards.
Bazz
See below the code that i’m using in my HTML page:
<html xmlns=“http://www.w3.org/1999/xhtml” lang=“en” xml:lang=“en”>
<head>
<title></title>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<meta name=“description” content="" />
<meta name=“keywords” content="" />
<script type=“text/javascript” src=“swfobject.js”></script>
<script type=“text/javascript” src=“motoResize.js”></script>
<script type=“text/javascript”>
var minWidth = 980;
var minHeight = 800;
var params = {
menu: "false",
allowScriptAccess: "always",
scale: "noscale",
allowFullScreen: "true",
bgcolor: "#000000"
};
swfobject.embedSWF("main_cs4.swf", "flashcontent", "100%", "100%", "10.0.0", "expressinstall.swf", {}, params, {});
if (swfobject.hasFlashPlayerVersion("6.0.0")) {
swfobject.addDomLoadEvent(createFullBrowserFlash);
}
</script>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="container">
<div id="flashcontent">
<br /><br /><strong>Please update your Flash Player</strong><br /><br />
This site makes use of the Adobe Flash Player.<br /><br />
The latest versions of browsers such as Firefox, Netscape or Internet Explorer usually have the Flash Player pre-installed.<br /><br />
If your browser doesn't or has an older version of the player, you can <a href="http://www.adobe.com/go/getflashplayer" target="_blank"><b>download it here</b></a>.<br /><br />
Flash Player enables us to provide you with a dynamic website with video clips and full screen images.<br /><br />
<a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" title="Get Adobe Flash Player" border="0" /></a><br /><br/>
</div>
</div>
</body>
</html>