Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to embed a SWF file in an HTML page?

share|improve this question

7 Answers

up vote 89 down vote accepted

The best approach to embed a SWF into a HTML page is to use SWFObject.

It is a simple open-source Javascript library that is easy-to-use and standards-friendly method to embed Flash content.

It also offers Flash player version detection. If the user does not have the version of Flash required or has Javascript disabled, they will see a alternate content. You can also use this library to trigger a Flash player upgrade. Once the user has upgraded, they will be redirected back to the page.

An example from the documentation:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <title>SWFObject dynamic embed - step 3</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script type="text/javascript" src="swfobject.js"></script>

    <script type="text/javascript">
    swfobject.embedSWF("myContent.swf", "myContent", "300", "120", "9.0.0");
    </script>

  </head>
  <body>
    <div id="myContent">
      <p>Alternative content</p>
    </div>
  </body>
</html>

A good tool to use along with this is the SWFObject HTML and Javascript generator. It basically generates the HTML and Javascript you need to embed the Flash using SWFObject. Comes with a very simple UI for you to input your parameters.

Highly Recommended and very simple to use.

share|improve this answer
6  
SWFObject is good. It simply works. An even more wonderful idea is to use a Content Delivery Network to get the javascript. I use Google's ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js – azure_ardee Apr 1 '11 at 2:12
I had problems with using the object tag directly with IE9 but it works perfectly with swfobject. – AndyMcKenna Sep 5 '12 at 15:11
<object width="100" height="100">
    <param name="movie" value="file.swf">
    <embed src="file.swf" width="100" height="100">
    </embed>
</object>
share|improve this answer
That code isn't XHTML-valid ... <embed> must not be within a object-tag. – Anheledir Oct 10 '08 at 0:19
21  
No specification of the user to be XHTML valid, he asked for HTML – Ólafur Waage Oct 21 '08 at 0:09

This is suitable for application from root environment.

<object type="application/x-shockwave-flash" data="/dir/application.swf" 
id="applicationID" style="margin:0 10px;width:auto;height:auto;">

<param name="movie" value="/dir/application.swf" />
<param name="wmode" value="transparent" /> <!-- Or opaque, etc. -->

<!-- ↓ Required paramter or not, depends on application -->
<param name="FlashVars" value="" />

<param name="quality" value="high" />
<param name="menu" value="false" />

</object>

Additional parameters should be/can be added which depends on .swf it self. No embed, just object and parameters within, so, it remains valid, working and usable everywhere, it doesn't matter which !DOCTYPE is all about. :)

share|improve this answer

I use http://wiltgen.net/objecty/, it helps to embed media content and avoid the IE "click to activate" problem.

share|improve this answer
The "click to activate" problem is called "eolas activation" but is removed in actual versions of the IE. – Anheledir Oct 10 '08 at 0:20

As mentioned SWF Object is great. UFO is worth a look as well

share|improve this answer

If you are using one of those js libraries to insert Flash, I suggest adding plain object embed tag inside of <noscript/>.

share|improve this answer
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/VhtIydTmOVU&amp;hl=en&amp;fs=1&amp;color1=0xe1600f&amp;color2=0xfebd01" 
style="width:640px;height:480px;margin:10px 36px;">

<param name="movie" value="http://www.youtube.com/v/VhtIydTmOVU&amp;hl=en&amp;fs=1&amp;color1=0xe1600f&amp;color2=0xfebd01" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="wmode" value="opaque" />
<param name="quality" value="high" />
<param name="menu" value="false" />

</object>
share|improve this answer
2  
Note that object>data and movie>value parameters are the same. This code should work for any free to watch and share - youtube video. – Spooky Oct 11 '12 at 19:46
Generally speaking, it's desirable for answers to explain the code they give, rather than just dropping code on the asker. The goal is to learn about problems and prevent them in the future rather than make them vanish. – KRyan Oct 11 '12 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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