Hello,
My website work great on Safari and Internet explorer but it do not work in firefox. It only show nothing. I dont understand why can someone please help me? My website is a fullscreen flash file (.swf)
Here's the link:
http://www.motoolix.com
here's the source code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Moto Olix</title>
<meta name="description" content="Moto Olix | Garage">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#mon_flash{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
min-width: 960px;
min-height: 800px;
}
body {
background-color: #000;
}
h4
{
color:#FFF
}
.h4
{
color:#FFF
}
</style>
<!--[if lt IE 7]>
<style type="text/css">
#mon_flash {
width:expression(document.body.clientWidth < 960? "960px": "100%" );
height:expression(document.body.clientHeight < 600? "600px": "100%" );
}
</style>
<![endif]-->
if (BrowserDetect.browser == 'Firefox' && BrowserDetect.version == '3.5')
{
// Load CSS file
}
</head>
<body>
<script src="Scripts/swfobject_modified.js" type="text/javascript">
<!--
self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);self.focus();
function x(){}
function y(){self.focus()};
//-->
</script>
<div id="mon_flash">
<object id="FlashID" classid="clsid

27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="880">
<param name="movie" value="motoolix.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
</object>
</div>
<!--[if !IE]>-->
<!--<![endif]-->
<script type="text/javascript">
<!--
swfobject.registerObject("FlashID");
//-->
</script>
</body>
</html>
Thanks you!