Ticket #129 (new task)
Improve flash html code to be more compliant and cross browser
| Reported by: | yurj@… | Owned by: | andycat |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.3 - Plone 3 |
| Component: | EmbeddedPlayback | Version: | |
| Keywords: | flash embed object | Cc: |
Description
read this:
http://www.alistapart.com/articles/flashsatay/
the author tells it works in every browser, and it is xhtml compliant (so don't use the "embed" tag):
===========
<object type="application/x-shockwave-flash data="c.swf?path=movie.swf" width="400" height="300">
<param name="movie" value="c.swf?path=movie.swf" />
<img src="noflash.gif" width="200" height="100" alt="" />
</object>
If the browser doesn’t know how to play objects with a MIME type of application/x-shockwave-flash, it will simply go for the next child element and give that a try. I’m guessing that a simple image element should be okay for most people. Failing that, you can simply use text.
===
