<?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 ExternalInterface bug on IE</title>
	<atom:link href="http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/</link>
	<description>Yet another labs blog</description>
	<pubDate>Wed, 07 Jan 2009 14:18:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Tim H</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1047</link>
		<dc:creator>Tim H</dc:creator>
		<pubDate>Fri, 07 Nov 2008 23:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1047</guid>
		<description>I wrestled and cursed about this problem for a whole day.
Here is the official adobe solution:

http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400730

Check it out, they have 2 solutions, one didnt work for me, the other did work.</description>
		<content:encoded><![CDATA[<p>I wrestled and cursed about this problem for a whole day.<br />
Here is the official adobe solution:</p>
<p><a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400730" rel="nofollow">http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400730</a></p>
<p>Check it out, they have 2 solutions, one didnt work for me, the other did work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Fisk</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1046</link>
		<dc:creator>Adam Fisk</dc:creator>
		<pubDate>Sun, 02 Nov 2008 01:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1046</guid>
		<description>The problem for me did have to do with the ID.  I'm not sure what SWFObject is doing under the covers, but the following did not work for me:

var flashvars = {};
var params = {};
params.play = "true";
params.loop = "false";
params.quality = "high";
params.allowscriptaccess = "always";
var attributes = {};
attributes.id = "LittleShoot";
attributes.name = "LittleShoot";
attributes.align = "middle";
swfobject.embedSWF("LittleShoot.swf", "littleShootNoFlash2", "1", "1", "9.0.0", "expressInstall.swf", flashvars, params, attributes);

whereas this did:

var flashvars = {};
var params = {};
params.play = "true";
params.loop = "false";
params.quality = "high";
params.allowscriptaccess = "always";
var attributes = {};
attributes.id = "littleShootFlashContent";
attributes.name = "LittleShoot";
attributes.align = "middle";
swfobject.embedSWF("LittleShoot.swf", "littleShootNoFlash2", "1", "1", "9.0.0", "expressInstall.swf", flashvars, params, attributes);

Notice the attributes.id value.  It looks like there may have been an issue with the flash object having the same name as the object id, something like that.  Good luck.</description>
		<content:encoded><![CDATA[<p>The problem for me did have to do with the ID.  I&#8217;m not sure what SWFObject is doing under the covers, but the following did not work for me:</p>
<p>var flashvars = {};<br />
var params = {};<br />
params.play = &#8220;true&#8221;;<br />
params.loop = &#8220;false&#8221;;<br />
params.quality = &#8220;high&#8221;;<br />
params.allowscriptaccess = &#8220;always&#8221;;<br />
var attributes = {};<br />
attributes.id = &#8220;LittleShoot&#8221;;<br />
attributes.name = &#8220;LittleShoot&#8221;;<br />
attributes.align = &#8220;middle&#8221;;<br />
swfobject.embedSWF(&#8221;LittleShoot.swf&#8221;, &#8220;littleShootNoFlash2&#8243;, &#8220;1&#8243;, &#8220;1&#8243;, &#8220;9.0.0&#8243;, &#8220;expressInstall.swf&#8221;, flashvars, params, attributes);</p>
<p>whereas this did:</p>
<p>var flashvars = {};<br />
var params = {};<br />
params.play = &#8220;true&#8221;;<br />
params.loop = &#8220;false&#8221;;<br />
params.quality = &#8220;high&#8221;;<br />
params.allowscriptaccess = &#8220;always&#8221;;<br />
var attributes = {};<br />
attributes.id = &#8220;littleShootFlashContent&#8221;;<br />
attributes.name = &#8220;LittleShoot&#8221;;<br />
attributes.align = &#8220;middle&#8221;;<br />
swfobject.embedSWF(&#8221;LittleShoot.swf&#8221;, &#8220;littleShootNoFlash2&#8243;, &#8220;1&#8243;, &#8220;1&#8243;, &#8220;9.0.0&#8243;, &#8220;expressInstall.swf&#8221;, flashvars, params, attributes);</p>
<p>Notice the attributes.id value.  It looks like there may have been an issue with the flash object having the same name as the object id, something like that.  Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Fisk</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1045</link>
		<dc:creator>Adam Fisk</dc:creator>
		<pubDate>Fri, 31 Oct 2008 05:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1045</guid>
		<description>Same IE problem here.  Are you guys all add the callbacks in the constructor?  I'll be experimenting tomorrow with a separate method that adds the callbacks -- more likely my object will be in the DOM at that point.  Would try it now, but it's a little on the late side.

I'll let you know if I find anything.</description>
		<content:encoded><![CDATA[<p>Same IE problem here.  Are you guys all add the callbacks in the constructor?  I&#8217;ll be experimenting tomorrow with a separate method that adds the callbacks &#8212; more likely my object will be in the DOM at that point.  Would try it now, but it&#8217;s a little on the late side.</p>
<p>I&#8217;ll let you know if I find anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronny Karam</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1038</link>
		<dc:creator>Ronny Karam</dc:creator>
		<pubDate>Tue, 09 Sep 2008 09:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1038</guid>
		<description>Hi,

Actually I'm having the same problem as David &#38; Micah. I got to flash__ addCallback method and I'm sure it's causing the problem yet there's not working solution for it. Not adding an id to the object is not a problem, the problem is when you're using externalInterface and actually add the id to the object, IE goes crazy and displays the error message: Object doesn't support property or method.

Regards.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Actually I&#8217;m having the same problem as David &amp; Micah. I got to flash__ addCallback method and I&#8217;m sure it&#8217;s causing the problem yet there&#8217;s not working solution for it. Not adding an id to the object is not a problem, the problem is when you&#8217;re using externalInterface and actually add the id to the object, IE goes crazy and displays the error message: Object doesn&#8217;t support property or method.</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micah</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1032</link>
		<dc:creator>Micah</dc:creator>
		<pubDate>Wed, 06 Aug 2008 13:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1032</guid>
		<description>I'm having the same problem as David Higgins.  It is getting very frustrating.  Does anyone know how to solve this problem?  Also, all the swfobject.js files I've tried using (including v1.5.1) give me the javascript error: "n has no properties" in firefox. Any help would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same problem as David Higgins.  It is getting very frustrating.  Does anyone know how to solve this problem?  Also, all the swfobject.js files I&#8217;ve tried using (including v1.5.1) give me the javascript error: &#8220;n has no properties&#8221; in firefox. Any help would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Og2t</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1018</link>
		<dc:creator>Og2t</dc:creator>
		<pubDate>Wed, 25 Jun 2008 09:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-1018</guid>
		<description>Oh I so needed it over a year ago but couldn't find a solution anywhere. Thanks a million!</description>
		<content:encoded><![CDATA[<p>Oh I so needed it over a year ago but couldn&#8217;t find a solution anywhere. Thanks a million!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Higgins</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-988</link>
		<dc:creator>David Higgins</dc:creator>
		<pubDate>Thu, 03 Apr 2008 22:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-988</guid>
		<description>I'm having an issue with SWFObject and ExternalInterface.addCallback ... I was browsing around and noticed that Mihai Bazon (http://mihai.bazon.net/blog/flash-s-externalinterface-and-ie) ran into a similar issue ... just curious, as you didn't mention this problem ... if you know of a work-around to it?

In Firefox, my addCallback's are registering just fine and my JS-code can execute my AS-code without issue ... in IE, I get 'object does not support this property or method' errors -- I've tracked it down to the __flash__addCallback(instance, name) method that appears to be dynamically injected into the browser by the flash plugin ... problem is 'instance' has no 'CallFunction' method, and therefore can't execute the "" XML .... 

Any suggestions?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having an issue with SWFObject and ExternalInterface.addCallback &#8230; I was browsing around and noticed that Mihai Bazon (http://mihai.bazon.net/blog/flash-s-externalinterface-and-ie) ran into a similar issue &#8230; just curious, as you didn&#8217;t mention this problem &#8230; if you know of a work-around to it?</p>
<p>In Firefox, my addCallback&#8217;s are registering just fine and my JS-code can execute my AS-code without issue &#8230; in IE, I get &#8216;object does not support this property or method&#8217; errors &#8212; I&#8217;ve tracked it down to the __flash__addCallback(instance, name) method that appears to be dynamically injected into the browser by the flash plugin &#8230; problem is &#8216;instance&#8217; has no &#8216;CallFunction&#8217; method, and therefore can&#8217;t execute the &#8220;&#8221; XML &#8230;. </p>
<p>Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaclav Vancura</title>
		<link>http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-982</link>
		<dc:creator>Vaclav Vancura</dc:creator>
		<pubDate>Fri, 29 Feb 2008 10:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://labs.hellokeita.com/2007/10/16/swfobject-externalinterface-bug-on-ie/#comment-982</guid>
		<description>You saved my day. Thanks! :]</description>
		<content:encoded><![CDATA[<p>You saved my day. Thanks! :]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
