
May 13th, 2008, 05:15 AM
|
|
Registered User
|
|
Join Date: May 2008
Posts: 6
Time spent in forums: 2 h 3 m 14 sec
Warnings Level: 5
Reputation Power: 0
|
|
|
Valid Flash in Firefox
Hmm, so it seems the old <embed> code is invalid!
*ugh*
...so I looked around and found the way to include Flash objects, and pass W3C validation:
HTML Code:
<object type="application/x-shockwave-flash" data="your-movie.swf" width="450" height="180">
<param name="movie" value="your-movie.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#000000">
<param name="menu" value="false">
</object>
The extra params are just for show. I tested it in the following browsers (on a Windows XP system)
Firefox
IE 6
IE 7
Opera
Safari
|