Hello,
I'm trying to embed swf into a webpage. When viewed locally the site works (after I've allowed IE to "Allow blocked content"). However, when I upload all the files to the server, it doesn't show. Although it does work with other browsers.
The site is
www.crocodilephotgraphy.co.uk
The code I've used is:
<script type="text/javascript" src="VT/Presentationslot/swfobject.js"></script>
<div id="flashcontent" class="container">
To view virtual tour properly, Flash Player 9.0.28 or later version is needed.
Please download the latest version of <a href="http://www.adobe.com/go/getflashplayer" target="_blank">Flash Player</a> and install it on your computer.
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("VT/Presentationslot/twviewer.swf", "sotester", "600", "150", "9.0.0", "#FFFFFF");
so.addParam("allowNetworking", "all");
so.addParam("allowScriptAccess", "always");
so.addParam("allowFullScreen", "true");
so.addParam("scale", "noscale");
//<!-%% Share Mode %%->
so.addVariable("lwImg", "resources/presentation_bg-loading.jpg");
so.addVariable("lwBgColor", "255,255,255,255");
so.addVariable("lwBarBgColor", "255,255,255,255");
so.addVariable("lwBarColor", "255,51,153,255");
so.addVariable("lwBarBounds", "225,138,365,5");
so.addVariable("lwlocation", "0");
so.addVariable("lwShowLoadingPercent", "true");
so.addVariable("lwTextColor", "255,0,0,0");
so.addVariable("iniFile", "config_Presentation.bin");
so.addVariable("progressType", "0");
so.addVariable("swfFile", "");
so.addVariable("href", location.href);
so.write("flashcontent");
// ]]>
</script>
Please can someone help.
Thank you