|
Thanks for the suggestion, but I tried all possible places to put that and it's still not working. Can you give an example of where in the code to put it? The slide show doesn't have an 'embed' tag, no object or embed. I guess it's all controlled by that javascript code?
Here is the code that is controlling the slide show.
#flashcontent {
float:top;
position: relative;
margin: 150px 0px 0px 0px;
z-index:1;
}
</style>
</head>
<body>
<div align="center">
<div id="flashcontent">
<script type="text/javascript" src="scripts/swfobject.js"></script>
<script type="text/javascript">
var so = new SWFObject("intro.swf", "mymovie", "750", "450", "9","#ffffff");
so.addParam("menu", "false");
so.addParam("allowfullscreen", "true");
so.addParam("allowScriptAccess", "always");
so.addVariable("dataPath", "intro_asset/introdata.xml");
so.write("flashcontent");
</script>
</div>
</div>
|