View Single Post
Old 06-05-2006, 01:57 PM   #5 (permalink)
kingpixel
Inactive
 
kingpixel's Avatar
 
Join Date: 06-05-06
Posts: 1
iTrader: 0 / 0%
Latest Blog:
None

kingpixel is liked by many
i have used this method in the past, and it works great but has some drawbacks. While it is true that it passes validation, and it works in most/all browsers, it has a basic flawand that is this: it does not stream flash content to IE browsers. meaning, it waits for the entire movie to cache locally before showing a single frame. This is a result of the "data=" part of the tag. It is most inconvenient for very large flash files (like video) and requires the work-around of loading a small container .swf first that then loads your main content. and since you must pass a reference to the main content in the object tag, it makes templatizing your flash embeds more difficult.

On another note, just today I noticed that simply formatted embed tag seems to work for embedding flash in all browsers. For more than a year I've hearing the evils of the embed and how it will soon be gone, only to find that the embed turns out to be the most reliable. I'm beginning to think this whole w3c and validation biz might just be for the birds.

here's the code snippet that worked:

<embed width="320" height="240" menu="true" loop="true" play="true" src="movie.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
kingpixel is offline   Reply With Quote