Hi all,
Here's the fix:
goto
http://blog.deconcept.com/swfobject/swfobject.zipunzip the file and copy the Javascript file to the location of your HTML file then;
Open the Html file with Wordpad Right click the HTML file, select Open with and select wordpad)
Just after this line: "<! --saved from url = (0013) about: internet -->
Copy and paste this:
<div id="flashcontent">
<strong>You need to upgrade your Flash Player</strong>
This is replaced by the Flash content.
Place your alternate content here and users without the Flash plugin or with
Javascript turned off will see this. Content here allows you to leave out <code>noscript</code>
tags. Include a link to <a href="swfobject.html?detectflash=false">bypass the detection</a> if you wish.
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("Filename.swf", "filename", "300", "300", "8", "#FF6600");
so.write("flashcontent");
// ]]>
</script>
Where Filename = name of flash file
filename = anyname u like
300 and 300 are dimensions of your flash file
8 = version of flash you want to access it
FF6600 = background colour of Flash document
Of course you know that :
"flashcontent" can be changed to any name you like but must be the same with the name in the div tag.
I wish you the best.
Tell us wether it worked o.