<?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"
	>
<channel>
	<title>Comments on: SWFObject 2.0 Beta</title>
	<atom:link href="http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/</link>
	<description>You've got your good thing, and I've got mine</description>
	<pubDate>Fri, 16 May 2008 12:45:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Geoff</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-21025</link>
		<dc:creator>Geoff</dc:creator>
		<pubDate>Mon, 25 Feb 2008 06:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-21025</guid>
		<description>Hi all, I just wanted to post a quick reminder: If you are posting here about a bug or issue with SWFObject, you'll have much better luck posting to the &lt;a href="http://blog.deconcept.com/swfobject/forum/"&gt;SWFObject forum&lt;/a&gt; for issues with 1.5, or the &lt;a href="http://groups.google.com/group/swfobject"&gt;SWFObject google group&lt;/a&gt; for questions about v. 2.0.</description>
		<content:encoded><![CDATA[<p>Hi all, I just wanted to post a quick reminder: If you are posting here about a bug or issue with SWFObject, you&#8217;ll have much better luck posting to the <a href="http://blog.deconcept.com/swfobject/forum/">SWFObject forum</a> for issues with 1.5, or the <a href="http://groups.google.com/group/swfobject">SWFObject google group</a> for questions about v. 2.0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elmimmo</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20959</link>
		<dc:creator>elmimmo</dc:creator>
		<pubDate>Thu, 21 Feb 2008 14:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20959</guid>
		<description>Where does SWFObject 2.0 leave QTObject, feature-wise? Any plans to update QTObject to keep its development paralel to SFWObject?</description>
		<content:encoded><![CDATA[<p>Where does SWFObject 2.0 leave QTObject, feature-wise? Any plans to update QTObject to keep its development paralel to SFWObject?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason The Saj</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20769</link>
		<dc:creator>Jason The Saj</dc:creator>
		<pubDate>Mon, 11 Feb 2008 19:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20769</guid>
		<description>Anyone else having issues with pop-up blockers in IE. Only occurs when using SWFObject 1.5 &#038; 2.0

- The Saj</description>
		<content:encoded><![CDATA[<p>Anyone else having issues with pop-up blockers in IE. Only occurs when using SWFObject 1.5 &#038; 2.0</p>
<p>- The Saj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom W</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20352</link>
		<dc:creator>Tom W</dc:creator>
		<pubDate>Wed, 30 Jan 2008 16:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20352</guid>
		<description>I've been using 1.5 (so I don't know if this problem's been fixed in 2.0) but if anyone is having problems with IE onunlod javaScript erros (I know I have) this really seems to take care of the problem for good:

Replacing the Flash Object HTML with '' in its container seems to work well.

In my case I use mootools so this is the line of code I used:
$('file-browser').setHTML("");

More details below:

	if (!window.opera &#038;&#038; document.all &#038;&#038; this.installedVer.major &gt; 7) {
		// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
		deconcept.SWFObject.doPrepUnload = true;
		if (!deconcept.unloadSet) {
		deconcept.SWFObjectUtil.prepUnload = function() {
			__flash_unloadHandler = function(){};
			__flash_savedUnloadHandler = function(){};
			window.onunload = function(){
				//IE onunload
				$('file-browser').setHTML("");
			}
			//window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
		}
		window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
		deconcept.unloadSet = true;
	}</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using 1.5 (so I don&#8217;t know if this problem&#8217;s been fixed in 2.0) but if anyone is having problems with IE onunlod javaScript erros (I know I have) this really seems to take care of the problem for good:</p>
<p>Replacing the Flash Object HTML with &#8221; in its container seems to work well.</p>
<p>In my case I use mootools so this is the line of code I used:<br />
$(&#8217;file-browser&#8217;).setHTML(&#8221;");</p>
<p>More details below:</p>
<p>	if (!window.opera &#038;&#038; document.all &#038;&#038; this.installedVer.major > 7) {<br />
		// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE<br />
		deconcept.SWFObject.doPrepUnload = true;<br />
		if (!deconcept.unloadSet) {<br />
		deconcept.SWFObjectUtil.prepUnload = function() {<br />
			__flash_unloadHandler = function(){};<br />
			__flash_savedUnloadHandler = function(){};<br />
			window.onunload = function(){<br />
				//IE onunload<br />
				$(&#8217;file-browser&#8217;).setHTML(&#8221;");<br />
			}<br />
			//window.attachEvent(&#8221;onunload&#8221;, deconcept.SWFObjectUtil.cleanupSWFs);<br />
		}<br />
		window.attachEvent(&#8221;onbeforeunload&#8221;, deconcept.SWFObjectUtil.prepUnload);<br />
		deconcept.unloadSet = true;<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pepper</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20326</link>
		<dc:creator>Pepper</dc:creator>
		<pubDate>Tue, 29 Jan 2008 15:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-20326</guid>
		<description>Looks like you need a SPAM blocking solution on your blog :)</description>
		<content:encoded><![CDATA[<p>Looks like you need a SPAM blocking solution on your blog :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens W</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-19024</link>
		<dc:creator>Jens W</dc:creator>
		<pubDate>Tue, 04 Dec 2007 19:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-19024</guid>
		<description>@pol: You can be that they insert some nasty new ones :-(</description>
		<content:encoded><![CDATA[<p>@pol: You can be that they insert some nasty new ones :-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BookWise</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18941</link>
		<dc:creator>BookWise</dc:creator>
		<pubDate>Tue, 27 Nov 2007 22:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18941</guid>
		<description>Looks like serious progress has been made.  Just getting the bug fixes would cause for celebration.  Thanks so much for the detailed information.  This really is the only place to get it.</description>
		<content:encoded><![CDATA[<p>Looks like serious progress has been made.  Just getting the bug fixes would cause for celebration.  Thanks so much for the detailed information.  This really is the only place to get it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pol</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18939</link>
		<dc:creator>pol</dc:creator>
		<pubDate>Tue, 27 Nov 2007 17:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18939</guid>
		<description>Somebody let me know, is this danm BUG fixed in latest versions???
If I try to type some text in flash input text field, letters like äöü etc became as aou.
I think it's very important bug... Really dont have time to try it in new versions.
sorry for bad english.</description>
		<content:encoded><![CDATA[<p>Somebody let me know, is this danm BUG fixed in latest versions???<br />
If I try to type some text in flash input text field, letters like äöü etc became as aou.<br />
I think it&#8217;s very important bug&#8230; Really dont have time to try it in new versions.<br />
sorry for bad english.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Bilyk</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18846</link>
		<dc:creator>Nick Bilyk</dc:creator>
		<pubDate>Wed, 21 Nov 2007 15:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18846</guid>
		<description>That's amazing that you have a picture on Adobe.com devnet of you wearing a shirt depicting two unicorns humping.</description>
		<content:encoded><![CDATA[<p>That&#8217;s amazing that you have a picture on Adobe.com devnet of you wearing a shirt depicting two unicorns humping.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Narty Austria</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18625</link>
		<dc:creator>Narty Austria</dc:creator>
		<pubDate>Tue, 13 Nov 2007 08:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18625</guid>
		<description>I’ve taken a brief glace at the beta for 2.0, but one of the things that I’m curious to know is if any of the swfobject plugins that work with 1.5 such as SWFAddress and SWFmousewheel, will still function or will these need to be rewritten too? Just ask as these have come to be handy little pieces of js/as.</description>
		<content:encoded><![CDATA[<p>I’ve taken a brief glace at the beta for 2.0, but one of the things that I’m curious to know is if any of the swfobject plugins that work with 1.5 such as SWFAddress and SWFmousewheel, will still function or will these need to be rewritten too? Just ask as these have come to be handy little pieces of js/as.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Digiguru</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18527</link>
		<dc:creator>Digiguru</dc:creator>
		<pubDate>Sat, 10 Nov 2007 06:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18527</guid>
		<description>Now that Microsoft has resolved the Eolas patent, and theres no more need to &lt;a href="http://blogs.msdn.com/ie/archive/2007/11/08/ie-automatic-component-activation-changes-to-ie-activex-update.aspx"&gt;click to activate&lt;/a&gt;, will there be any changes the swfObject?</description>
		<content:encoded><![CDATA[<p>Now that Microsoft has resolved the Eolas patent, and theres no more need to <a href="http://blogs.msdn.com/ie/archive/2007/11/08/ie-automatic-component-activation-changes-to-ie-activex-update.aspx">click to activate</a>, will there be any changes the swfObject?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lamelle</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18292</link>
		<dc:creator>Lamelle</dc:creator>
		<pubDate>Sat, 03 Nov 2007 17:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18292</guid>
		<description>Good luck with the new version!
Great work, I’ve sworn by SWFObject for so long.</description>
		<content:encoded><![CDATA[<p>Good luck with the new version!<br />
Great work, I’ve sworn by SWFObject for so long.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SmoothElectric Web Design</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18277</link>
		<dc:creator>SmoothElectric Web Design</dc:creator>
		<pubDate>Fri, 02 Nov 2007 16:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18277</guid>
		<description>I have found that this code does not operate with jquery "Thickbox" well. Thickbox opens an image over-top of the screen. When running this SWFobject code, and you click on a Thickbox item... Sometimes it will work, sometimes it will not. When it does work, the flash dissapears from the site due to lack of transparent in the code. Please consider this, as I have had to move on to find a valid xhtml that will work with my Thickbox that I like so much. - &lt;a href="http://www.smoothelectric.com" title="SmoothElectric Web Design" rel="follow"&gt;SmoothElectric.com&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I have found that this code does not operate with jquery &#8220;Thickbox&#8221; well. Thickbox opens an image over-top of the screen. When running this SWFobject code, and you click on a Thickbox item&#8230; Sometimes it will work, sometimes it will not. When it does work, the flash dissapears from the site due to lack of transparent in the code. Please consider this, as I have had to move on to find a valid xhtml that will work with my Thickbox that I like so much. - <a href="http://www.smoothelectric.com" title="SmoothElectric Web Design" rel="follow">SmoothElectric.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noclegi Austria</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18241</link>
		<dc:creator>Noclegi Austria</dc:creator>
		<pubDate>Thu, 01 Nov 2007 12:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18241</guid>
		<description>Thank you for your news. I have used to test this already. I hope, they will be useful for me. Greetings from Poland.</description>
		<content:encoded><![CDATA[<p>Thank you for your news. I have used to test this already. I hope, they will be useful for me. Greetings from Poland.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gboxcc</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18203</link>
		<dc:creator>gboxcc</dc:creator>
		<pubDate>Tue, 30 Oct 2007 05:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-18203</guid>
		<description>Thank you ,i will try &#038; test the v2.0 in gbox.cc,It's a great code.</description>
		<content:encoded><![CDATA[<p>Thank you ,i will try &#038; test the v2.0 in gbox.cc,It&#8217;s a great code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason The Saj</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17820</link>
		<dc:creator>Jason The Saj</dc:creator>
		<pubDate>Wed, 17 Oct 2007 16:27:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17820</guid>
		<description>Does the SWFObject 2.0 fix the "SWFObject in form on IE" problem?</description>
		<content:encoded><![CDATA[<p>Does the SWFObject 2.0 fix the &#8220;SWFObject in form on IE&#8221; problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernstudium</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17678</link>
		<dc:creator>Fernstudium</dc:creator>
		<pubDate>Tue, 16 Oct 2007 06:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17678</guid>
		<description>i should start to leran flash...</description>
		<content:encoded><![CDATA[<p>i should start to leran flash&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17584</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Wed, 10 Oct 2007 15:49:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17584</guid>
		<description>Great work, I've sworn by SWFObject for so long.

I do have a problem with SWFObject 1.5 that has started to emerge, I'm not sure if you are aware of it or if it exists in the 2.0 beta: users with Flash Player 9 often fail the detection if it set to check for 8, while it seems to work if the detection is set to check for 7. These systems are often, if not always, Mac. Is that a known problem?</description>
		<content:encoded><![CDATA[<p>Great work, I&#8217;ve sworn by SWFObject for so long.</p>
<p>I do have a problem with SWFObject 1.5 that has started to emerge, I&#8217;m not sure if you are aware of it or if it exists in the 2.0 beta: users with Flash Player 9 often fail the detection if it set to check for 8, while it seems to work if the detection is set to check for 7. These systems are often, if not always, Mac. Is that a known problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rafael mumme</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17568</link>
		<dc:creator>rafael mumme</dc:creator>
		<pubDate>Tue, 09 Oct 2007 16:03:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17568</guid>
		<description>I was at this MAX presentation too.  Congratulations.  I have some questions and concerns:
- why don't you split the script in 2 or more types and deliver it like mootools?  could be simple (withou detection and express install) and complete.
- are you thinking about mobiles and iphones?  don't forget them.</description>
		<content:encoded><![CDATA[<p>I was at this MAX presentation too.  Congratulations.  I have some questions and concerns:<br />
- why don&#8217;t you split the script in 2 or more types and deliver it like mootools?  could be simple (withou detection and express install) and complete.<br />
- are you thinking about mobiles and iphones?  don&#8217;t forget them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff</title>
		<link>http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17534</link>
		<dc:creator>Geoff</dc:creator>
		<pubDate>Sun, 07 Oct 2007 14:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.deconcept.com/2007/10/02/swfobject-2-0-beta/#comment-17534</guid>
		<description>Yep, the IE conditional approach has been around for a while, and is unfortunately the only way you can get IE to play nice with the object tag + the flash plugin.</description>
		<content:encoded><![CDATA[<p>Yep, the IE conditional approach has been around for a while, and is unfortunately the only way you can get IE to play nice with the object tag + the flash plugin.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
