There are various ways to show flash(swf file) on html, for example, object or embed tags.

I want to support IE6-9, FireFox3-, Chrome, Safari, and as many other browsers as possible.
(especially IE6-9)

But I also want to use simple tag as possible.

What is the best way to write html tag to show flash(swf file)?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I'd recommend SWFObject - it creates simple and easy to maintain code:

http://code.google.com/p/swfobject/

There's even a generator to automatically create the embed code:

http://www.bobbyvandersluis.com/swfobject/generator/index.html

link|improve this answer
Thank you very much for introducing the nice library. Is there information about which browsers does SWFObject support? – js_ Sep 1 '11 at 5:39
1  
It should support nearly all the browsers (except maybe very old versions). SWFObject is used by YouTube and even Adobe so it should be safe to use. – Laurent Sep 1 '11 at 6:28
1  
SWFObject works on every common desktop browser and even on the Wii or PS3. It's also a very good solution to display alternate content for browsers without Flash or JavaScript support (eg. iOS devices). – bummzack Sep 1 '11 at 6:28
feedback

SWFObject supports all browsers. in fact, if you build flex using Flash Builder 4 then it automatically uses swfObject to embed your swf into the html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.