<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SWFObject 2.2 and wmode transparent</title>
	<atom:link href="http://nooshu.com/swfobject-2-2-and-wmode-transparent/feed" rel="self" type="application/rss+xml" />
	<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=swfobject-2-2-and-wmode-transparent</link>
	<description>Kneeling on the shoulders of giants</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:10:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: rahul</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-1693</link>
		<dc:creator>rahul</dc:creator>
		<pubDate>Fri, 06 Jan 2012 20:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-1693</guid>
		<description>thanks a lot</description>
		<content:encoded><![CDATA[<p>thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: essel</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-985</link>
		<dc:creator>essel</dc:creator>
		<pubDate>Sat, 03 Sep 2011 23:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-985</guid>
		<description>for the comment on Aug 25 11, try it inside a function. the params worked for me inside the function but did not when I did it outside the function. doesn&#039;t seem to work on older browser versions of IE.
		

			function embedPlayer() {
				var flashvars = {};
				params = {wmode:&quot;transparent&quot;};
				swfobject.embedSWF(&quot;flash/banner.swf&quot;, &quot;flashcontent&quot;, &quot;1054&quot;, &quot;453&quot;, &quot;9.0&quot;, null, null, params, null);
			}
			
			function init() {
				embedPlayer();
			}
	
			$(init);
		</description>
		<content:encoded><![CDATA[<p>for the comment on Aug 25 11, try it inside a function. the params worked for me inside the function but did not when I did it outside the function. doesn&#8217;t seem to work on older browser versions of IE.</p>
<p>			function embedPlayer() {<br />
				var flashvars = {};<br />
				params = {wmode:&#8221;transparent&#8221;};<br />
				swfobject.embedSWF(&#8220;flash/banner.swf&#8221;, &#8220;flashcontent&#8221;, &#8220;1054&#8243;, &#8220;453&#8243;, &#8220;9.0&#8243;, null, null, params, null);<br />
			}</p>
<p>			function init() {<br />
				embedPlayer();<br />
			}</p>
<p>			$(init);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilich</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-981</link>
		<dc:creator>Ilich</dc:creator>
		<pubDate>Thu, 01 Sep 2011 15:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-981</guid>
		<description>Try this:

var flashvars = {},
params = {},
attributes = {};

swfobject.embedSWF(“flash/banner.swf”, “flashcontent”, “1054″, “453″, “9.0.0″, null, null, null, {wmode:’transparent’});</description>
		<content:encoded><![CDATA[<p>Try this:</p>
<p>var flashvars = {},<br />
params = {},<br />
attributes = {};</p>
<p>swfobject.embedSWF(“flash/banner.swf”, “flashcontent”, “1054″, “453″, “9.0.0″, null, null, null, {wmode:’transparent’});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-976</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Thu, 25 Aug 2011 13:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-976</guid>
		<description>Wow, I am having issues...  

My setup:

            
					var flashvars = {},
					params = {wmode:&#039;transparent&#039;},
					attributes = {};
					
swfobject.embedSWF(&quot;flash/banner.swf&quot;, &quot;flashcontent&quot;, &quot;1054&quot;, &quot;453&quot;, &quot;9.0.0&quot;, flashvars, params, attributes);
		   

...//here is the Div:


         
&lt;a href=&quot;http://www.adobe.com/go/getflashplayer&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;



Works fine as desired...but cannot get transparency to work...

Thanks for any clues you could lend...cheers.

matt</description>
		<content:encoded><![CDATA[<p>Wow, I am having issues&#8230;  </p>
<p>My setup:</p>
<p>					var flashvars = {},<br />
					params = {wmode:&#8217;transparent&#8217;},<br />
					attributes = {};</p>
<p>swfobject.embedSWF(&#8220;flash/banner.swf&#8221;, &#8220;flashcontent&#8221;, &#8220;1054&#8243;, &#8220;453&#8243;, &#8220;9.0.0&#8243;, flashvars, params, attributes);</p>
<p>&#8230;//here is the Div:</p>
<p><a href="http://www.adobe.com/go/getflashplayer" rel="nofollow"></a></p>
<p>Works fine as desired&#8230;but cannot get transparency to work&#8230;</p>
<p>Thanks for any clues you could lend&#8230;cheers.</p>
<p>matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swimmer</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-959</link>
		<dc:creator>Swimmer</dc:creator>
		<pubDate>Wed, 10 Aug 2011 07:49:40 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-959</guid>
		<description>it works fine for my project, thanks!</description>
		<content:encoded><![CDATA[<p>it works fine for my project, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-914</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Mon, 04 Jul 2011 15:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-914</guid>
		<description>Thank you man! The solution worked like a charm.
Really needed this as I&#039;m using an old method for embedding swfs called &quot;flash satay&quot; (used adobe&#039;s &quot;object only&quot; and embed stuff too, but these are so useless and buggy...)?
And I have problems with... yes... IE browser, the active x stuff are constantly popping out and this frustrates me and my visitors.</description>
		<content:encoded><![CDATA[<p>Thank you man! The solution worked like a charm.<br />
Really needed this as I&#8217;m using an old method for embedding swfs called &#8220;flash satay&#8221; (used adobe&#8217;s &#8220;object only&#8221; and embed stuff too, but these are so useless and buggy&#8230;)?<br />
And I have problems with&#8230; yes&#8230; IE browser, the active x stuff are constantly popping out and this frustrates me and my visitors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prosem</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-788</link>
		<dc:creator>prosem</dc:creator>
		<pubDate>Thu, 31 Mar 2011 16:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-788</guid>
		<description>Thanks!  FYI it will not work if you leave the flashvars and attributes variables off.</description>
		<content:encoded><![CDATA[<p>Thanks!  FYI it will not work if you leave the flashvars and attributes variables off.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Fehnel</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-519</link>
		<dc:creator>Adam Fehnel</dc:creator>
		<pubDate>Thu, 18 Nov 2010 22:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-519</guid>
		<description>Exactly what I needed.  Thanks!</description>
		<content:encoded><![CDATA[<p>Exactly what I needed.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-517</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 18 Nov 2010 09:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-517</guid>
		<description>Thanks for the info Tal. I guess you just have to be careful that you only add &#039;transparent&#039; to the movies that actually need it. Unless anyone knows of another way to enable the alpha channel on an embedded flash movies.</description>
		<content:encoded><![CDATA[<p>Thanks for the info Tal. I guess you just have to be careful that you only add &#8216;transparent&#8217; to the movies that actually need it. Unless anyone knows of another way to enable the alpha channel on an embedded flash movies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tal</title>
		<link>http://nooshu.com/swfobject-2-2-and-wmode-transparent#comment-515</link>
		<dc:creator>Tal</dc:creator>
		<pubDate>Thu, 18 Nov 2010 08:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://nooshu.com/?p=289#comment-515</guid>
		<description>actually wmode=transparent is not recomended at all , it causes performance issues.
&quot;Flash Player 10.1 hardware rendering is automatically enabled on supported devices, and it&#039;s not necessary to add the wmode=gpu embed parameter to enable it. However, when working with Flash Player 10.1, the wmode=opaque or wmode=transparent embed parameters will disable hardware rendering, causing the software to render the graphics.&quot;
http://www.adobe.com/devnet/flashplayer/articles/fplayer10_1_hardware_acceleration.html</description>
		<content:encoded><![CDATA[<p>actually wmode=transparent is not recomended at all , it causes performance issues.<br />
&#8220;Flash Player 10.1 hardware rendering is automatically enabled on supported devices, and it&#8217;s not necessary to add the wmode=gpu embed parameter to enable it. However, when working with Flash Player 10.1, the wmode=opaque or wmode=transparent embed parameters will disable hardware rendering, causing the software to render the graphics.&#8221;<br />
<a href="http://www.adobe.com/devnet/flashplayer/articles/fplayer10_1_hardware_acceleration.html" rel="nofollow">http://www.adobe.com/devnet/flashplayer/articles/fplayer10_1_hardware_acceleration.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

