<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>altrugon.com &#187; Flash</title>
	<atom:link href="http://www.altrugon.com/category/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.altrugon.com</link>
	<description>El blog de altrugon</description>
	<lastBuildDate>Tue, 09 Feb 2010 22:40:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Firefox, hover-flow hidden, and flash</title>
		<link>http://www.altrugon.com/css/firefox-hover-flow-hidden-and-flashfirefox-hover-flow-hidden-y-flash/</link>
		<comments>http://www.altrugon.com/css/firefox-hover-flow-hidden-and-flashfirefox-hover-flow-hidden-y-flash/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 03:08:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[overflow hidden]]></category>
		<category><![CDATA[overflow:hidden]]></category>

		<guid isPermaLink="false">http://www.altrugon.com/?p=217</guid>
		<description><![CDATA[So, you have noticed that Firefox doesn&#8217;t handle the &#8220;overflow: hidden&#8221; very well with flash elements. I know, you maybe have a fancy slideshow that is working perfect with images and other elements, but when you try to add some videos everything goes crazy . Well don&#8217;t desperate, the solution is easy. Your code right [...]]]></description>
			<content:encoded><![CDATA[<p>So, you have noticed that Firefox doesn&#8217;t handle the &#8220;overflow: hidden&#8221; very well with flash elements. I know, you maybe have a fancy slideshow that is working perfect with images and other elements, but when you try to add some videos everything goes crazy <img src='http://www.altrugon.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . Well don&#8217;t desperate, the solution is easy.<span id="more-217"></span></p>
<p>Your code right now looks something like this:</p>
<pre><code>&lt;object  width="500" height="300" ... &gt;
  &lt;param name="movie" value="matrix.swf" /&gt;
  &lt;param name="quality" value="high" /&gt;
  ...
  &lt;embed src="matrix.swf" width="500" height="300" quality="high"  ... &gt;&lt;/embed&gt;
&lt;/object&gt;</code></pre>
<p>To work around this, you only need to use the wmode=”opaque” parameter. This will give the flash movie a stacking order</p>
<pre><code>&lt;object  width="500" height="300" ... &gt;
  &lt;param name="movie" value="matrix.swf" /&gt;
  &lt;param name="quality" value="high" /&gt;
  &lt;param name="wmode" value="opaque" /&gt;
  ...
  &lt;embed src="matrix.swf" width="500" height="300" quality="high"  ... &gt;&lt;/embed&gt;
&lt;/object&gt;</code></pre>
<p>You also may use the wmode=”transparent” which not only allows us to stack elements but also makes the background of the flash movie transparent.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.altrugon.com/css/firefox-hover-flow-hidden-and-flashfirefox-hover-flow-hidden-y-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
