We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

ebukva on 11/19/06


Tagged

flash embed


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

flodar
dmarten
er16004
tvdeyen


embed flash


Published in: HTML 


  1. <!-- hixie.ch method of embedding flash content that works on a variety
  2. of browsers and produces even xhtml 1.0 strict validating code -->
  3.  
  4. <div id="flash">
  5. <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
  6. codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
  7. width="800"
  8. height="260"
  9. id="some_id">
  10.  
  11. <param name="allowScriptAccess" value="sameDomain" />
  12. <param name="movie" value="_lib/flash/some_name.swf" />
  13. <param name="quality" value="high" />
  14. <param name="bgcolor" value="#ffffff" />
  15.  
  16. <!--[if !IE]> <-->
  17. <object data="_lib/flash/some_name.swf"
  18. width="800"
  19. height="260"
  20. type="application/x-shockwave-flash">
  21. <param name="quality" value="high" />
  22. <param name="bgcolor" value="#ffffff" />
  23. <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" />
  24. </object>
  25. <!--> <![endif]-->
  26.  
  27. </object>
  28. </div>

Report this snippet 

You need to login to post a comment.