Skip to content

Instantly share code, notes, and snippets.

@voku
Created June 4, 2014 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voku/6c8fc39728c2e5837114 to your computer and use it in GitHub Desktop.
Save voku/6c8fc39728c2e5837114 to your computer and use it in GitHub Desktop.
embedding flash: This is different than the default code that Flash provides. That typically involves the "embed"-tag and is not valid XHTML. This doesn't use that, and is fully valid. - From http://snippetlib.com/html/embedding_flash
<object type="application/x-shockwave-flash"
data="your-flash-file.swf"
width="0" height="0">
<param name="movie" value="your-flash-file.swf" />
<param name="quality" value="high"/>
</object>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment