<?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: Flash With Transparent Backgrounds</title>
	<atom:link href="http://blueprintds.com/2008/02/22/flash-with-transparent-background/feed/" rel="self" type="application/rss+xml" />
	<link>http://blueprintds.com/2008/02/22/flash-with-transparent-background/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flash-with-transparent-background</link>
	<description>Blueprint Design</description>
	<lastBuildDate>Thu, 12 Nov 2009 03:49:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: ed</title>
		<link>http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1780</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Mon, 05 Jan 2009 19:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1780</guid>
		<description>thank you for this... ive found so many tutorials explaining how to do this but this is the only one that seems to work!! 
 
thanks for making my day!! </description>
		<content:encoded><![CDATA[<p>thank you for this&#8230; ive found so many tutorials explaining how to do this but this is the only one that seems to work!! </p>
<p>thanks for making my day!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1779</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 17 Dec 2008 03:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1779</guid>
		<description>Hi... 
 
The transparent thing was great. But do you have any idea on how to remove the flash which floats on the host html page. If I use a close button and give the code  
on (release) { 
	this.unloadMovie(); 
} 
the swf surely goes away and I see the underlying html page only. But when I rightclick I can find that the &#039;About Flash Player 9&#039; which means the flash still exists. The swf has unloaded and not the flash player which is running the swf. To get the idea you can visit &lt;a href=&quot;http://www.pixelgenio.com/ongoingprojects/ipgeorgia/dress3.html&quot; rel=&quot;nofollow&quot;&gt;http://www.pixelgenio.com/ongoingprojects/ipgeorg...&lt;/a&gt; 
 
If you an solve this for me that would be of great help. 
Thanks 
Regards 
Alex </description>
		<content:encoded><![CDATA[<p>Hi&#8230; </p>
<p>The transparent thing was great. But do you have any idea on how to remove the flash which floats on the host html page. If I use a close button and give the code<br />
on (release) {<br />
	this.unloadMovie();<br />
}<br />
the swf surely goes away and I see the underlying html page only. But when I rightclick I can find that the &#039;About Flash Player 9&#039; which means the flash still exists. The swf has unloaded and not the flash player which is running the swf. To get the idea you can visit <a href="http://www.pixelgenio.com/ongoingprojects/ipgeorgia/dress3.html" rel="nofollow">http://www.pixelgenio.com/ongoingprojects/ipgeorg&#8230;</a> </p>
<p>If you an solve this for me that would be of great help.<br />
Thanks<br />
Regards<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash Web Designer</title>
		<link>http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1778</link>
		<dc:creator>Flash Web Designer</dc:creator>
		<pubDate>Mon, 02 Jun 2008 03:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1778</guid>
		<description>A quicker way if your using CS3, in the properties bar at the bottom of the window, there is a parameters option box. If you click that you can just input wmode and transparent into that. 
Sam </description>
		<content:encoded><![CDATA[<p>A quicker way if your using CS3, in the properties bar at the bottom of the window, there is a parameters option box. If you click that you can just input wmode and transparent into that.<br />
Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Freetly</title>
		<link>http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1777</link>
		<dc:creator>Adam Freetly</dc:creator>
		<pubDate>Wed, 26 Mar 2008 12:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://blueprintds.com/2008/02/22/flash-with-transparent-background/#comment-1777</guid>
		<description>this can also work if you&#039;re using &lt;a href=&quot;http://code.google.com/p/swfobject/&quot; rel=&quot;nofollow&quot;&gt;swfobject&lt;/a&gt; to insert flash, you just need to use &lt;code&gt;wmode:&quot;transparent&quot;&lt;/code&gt; when you call the script: 
&lt;pre&gt;&lt;code&gt; 
    &lt;script type=&quot;text/javascript&quot;&gt; // &lt;![CDATA[ 
	var flashvars = {}; 
	var par = { wmode:&quot;transparent&quot; }; 
    swfobject.embedSWF(&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/test.swf&quot;, &quot;flash&quot;, &quot;587&quot;, &quot;240&quot;, &quot;9.0.0&quot;, &quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/expressInstall.swf&quot;, flashvars, par ); 
	// ]]&gt; 
    &lt;/script&gt; 
&lt;/code&gt;&lt;/pre&gt; 
(this code is for wordpress, but you can replace the PHP with absolute or relative paths) </description>
		<content:encoded><![CDATA[<p>this can also work if you&#039;re using <a href="http://code.google.com/p/swfobject/" rel="nofollow">swfobject</a> to insert flash, you just need to use &lt;code&gt;wmode:&quot;transparent&quot;&lt;/code&gt; when you call the script:<br />
&lt;pre&gt;&lt;code&gt;<br />
    &lt;script type=&quot;text/javascript&quot;&gt; // &lt;![CDATA[<br />
	var flashvars = {};<br />
	var par = { wmode:&quot;transparent&quot; };<br />
    swfobject.embedSWF(&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/test.swf&quot;, &quot;flash&quot;, &quot;587&quot;, &quot;240&quot;, &quot;9.0.0&quot;, &quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/expressInstall.swf&quot;, flashvars, par );<br />
	// ]]&gt;<br />
    &lt;/script&gt;<br />
&lt;/code&gt;&lt;/pre&gt;<br />
(this code is for wordpress, but you can replace the PHP with absolute or relative paths)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 31/36 queries in 0.008 seconds using disk: basic

Served from: blueprintds.com @ 2012-05-16 21:33:45 -->
