Hello,
Im using swfobject to embed my swf files in html. I have this code:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>72pics - Let you images tell a story!</TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</script>
<style type="text/css">
body { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;}
</style> </HEAD>
<BODY>
<script type="text/javascript" src="swfobject.js">
<div id="flashcontent">
</div>
<script type="text/javascript">
var so = new SWFObject("index.swf", "main", "100%", "100%", "9", "#ffffff");
so.useExpressInstall("expressinstall.swf");
so.write("flashcontent");
</script>
</BODY>
</HTML>
And it works fine in fire fox, but not in Internet explorer. I get a blank page...
What could be the reason?
Regards,
Mirza
|