I maintain a website (www.terryjohnsonsflamingos.com) and have run across a problem that I don't seem to know how to fix.
It was working perfectly in IE and I had known for a while that the flash was not working in Firefox and had no idea how to fix it. The site has a jukebox on it where it will play snippets of their music which will not work in Firefox. I got that page to work by changing some of the code to:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Flamingos Jukebox</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body bgcolor="#000000" topmargin="0" leftmargin="0" style="background: black url(Images/FlamingosJukeboxNotes.gif) fixed;}">
<table border="0" width="288">
<tr><td>
<center>
<object type="application/x-shockwave-flash" data="Flamingosjukebox.swf" width="202" height="263" align="middle">
<param name="movie" value="Flamingosjukebox.swf"/>
<param name="bgcolor" value="#000000" />
</object>
</center>
</td></tr>
</table>
</body></html>
When I tested that, it worked fine and I thought "aha, I'll just change the code on the other 2 pages to do the same thing and the problem will be solved." But NOOOO! Now the music won't play on those other 2 pages, one being the index page and the other being the home page. I don 't have the other 2 pages uploaded to the server yet, so the old pages are still there that work in every browser except Firefox.
What do I need to do to insure that the music will play AND the video will play? One thing that I did differently on the jukebox page vs the other 2 is that the music on the jukebox page is part of the *.swf file and not a separate object. Will that correct the problem?
Thank you.