Click to See Complete Forum and Search --> : flash not appearing in FF or opera


tomfmason
10-04-2006, 01:26 PM
This may be a rather silly question but ...

I recently downloaded FF and Opera. I am not sure if this is an issue with my set up of the browsers. I have flash player for both but they are not displaying the flash.

So I assumed that it was the way that I was displaying it in the html.

Here is what I have.


<div id="header">
<object type="application/x-shockwave-flash" width="770" height="200" data="header.swf">
<param name="movie" value="../images/header.swf" />
</object>
</div>


I am sure that this is do to the rather simple way that I am displaying the flash movie..

Any suggestions would be great.

Thanks,
Tom

coothead
10-04-2006, 01:55 PM
Hi there tomfmason

try it like this...

<div id="header">
<object type="application/x-shockwave-flash" width="770" height="200" data="../images/header.swf">
<param name="movie" value="../images/header.swf" />
</object>
</div>

coothead

tomfmason
10-04-2006, 02:08 PM
LOL.. Thanks.. That fixed it. I knew that it was a silly question..

Thanks again,
Tom

coothead
10-04-2006, 02:23 PM
No problem, you're welcome. ;)