Hey,
For some reason I can’t get SWFObject to work. I’m using the following script:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<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" />
</head>
<body>
<div id="flashcontent" />
<script type="text/javascript" src="js/swfobject.js" />
<script type="text/javascript">
var so = new SWFObject("Index.swf", "flashmovie", "498", "2300", "8", "#ffffff");
so.addParam("wmode", "opaque");
so.addParam("base", ".");
so.addVariable("xmlpath", "content.xml");
so.write("flashcontent");
</script>
</body>
</html>
Can anyone spot where the problem is?
Thanks!!