<?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: ExternalInterface not working in Firefox?</title>
	<atom:link href="http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 13:41:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: ActionScript 2 External Interface &#124;</title>
		<link>http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm/comment-page-1#comment-12718</link>
		<dc:creator>ActionScript 2 External Interface &#124;</dc:creator>
		<pubDate>Wed, 28 Dec 2011 07:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://Here&#039;sawierdone.Let&#039;ssayyouhaveaflashnavigation-oneofthoseoldDHTMLstyledrop-downones,butdoneinflashandlayeredoverthetopofyourpagecontent.Youcanstickthewmodetotransparentandhaveatransparentbackgroundforyourf#comment-12718</guid>
		<description>[...] http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm Tweet [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm" rel="nofollow">http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm</a> Tweet [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachael</title>
		<link>http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm/comment-page-1#comment-7725</link>
		<dc:creator>Rachael</dc:creator>
		<pubDate>Wed, 20 Jul 2011 14:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://Here&#039;sawierdone.Let&#039;ssayyouhaveaflashnavigation-oneofthoseoldDHTMLstyledrop-downones,butdoneinflashandlayeredoverthetopofyourpagecontent.Youcanstickthewmodetotransparentandhaveatransparentbackgroundforyourf#comment-7725</guid>
		<description>Thanks James! I tried that and it didn&#039;t work..it said that there is no method with the name setTimeout. After digging around the internet, I found out that changing it to _global.setTimeout would help. So it compiled fine, but it is still crashing in FireFox, so it didn&#039;t solve the problem.</description>
		<content:encoded><![CDATA[<p>Thanks James! I tried that and it didn&#8217;t work..it said that there is no method with the name setTimeout. After digging around the internet, I found out that changing it to _global.setTimeout would help. So it compiled fine, but it is still crashing in FireFox, so it didn&#8217;t solve the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm/comment-page-1#comment-7717</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 20 Jul 2011 07:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://Here&#039;sawierdone.Let&#039;ssayyouhaveaflashnavigation-oneofthoseoldDHTMLstyledrop-downones,butdoneinflashandlayeredoverthetopofyourpagecontent.Youcanstickthewmodetotransparentandhaveatransparentbackgroundforyourf#comment-7717</guid>
		<description>@Rachael - I&#039;ve found that when you&#039;re trying to launch popup windows or confirmation windows in the external page JavaScript, it doesn&#039;t work so well if you try to immediately launch the popup in response to a click in Flash.
I&#039;ve worked around this in the past by adding the click into an ActionScript Timeout, using code like:

&lt;code&gt;function alertDialog(mesg) {
    setTimeout(function() {
        flash.external.ExternalInterface.call(&quot;alert&quot;, mesg);
    }, 0);
}&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@Rachael &#8211; I&#8217;ve found that when you&#8217;re trying to launch popup windows or confirmation windows in the external page JavaScript, it doesn&#8217;t work so well if you try to immediately launch the popup in response to a click in Flash.<br />
I&#8217;ve worked around this in the past by adding the click into an ActionScript Timeout, using code like:</p>
<p><code>function alertDialog(mesg) {<br />
    setTimeout(function() {<br />
        flash.external.ExternalInterface.call("alert", mesg);<br />
    }, 0);<br />
}</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachael</title>
		<link>http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm/comment-page-1#comment-7687</link>
		<dc:creator>Rachael</dc:creator>
		<pubDate>Fri, 15 Jul 2011 14:06:51 +0000</pubDate>
		<guid isPermaLink="false">http://Here&#039;sawierdone.Let&#039;ssayyouhaveaflashnavigation-oneofthoseoldDHTMLstyledrop-downones,butdoneinflashandlayeredoverthetopofyourpagecontent.Youcanstickthewmodetotransparentandhaveatransparentbackgroundforyourf#comment-7687</guid>
		<description>Hi! This is happening currently for Firefox 5.0. I&#039;m imprinting &quot;flash.external.ExternalInterface&quot; and these are my functions: 	&lt;code&gt;//confirmation dialog
	function confirmationDialog(mesg:String) {
		return flash.external.ExternalInterface.call(&quot;confirm&quot;, mesg);
	}
	//alert dialog
	function alertDialog(mesg) {
		return flash.external.ExternalInterface.call(&quot;alert&quot;, mesg);
	}
&lt;/code&gt;

I&#039;m using Actionscript 2.0 in Multimedia Flash Professional 8. Confirmations and alerts will crash in Firefox for a while, then it will be okay and work perfectly for a few hours. I haven&#039;t experienced any problems with IE9 or Chrome. Any help would be MUCH appreciated, thanks!</description>
		<content:encoded><![CDATA[<p>Hi! This is happening currently for Firefox 5.0. I&#8217;m imprinting &#8220;flash.external.ExternalInterface&#8221; and these are my functions: 	<code>//confirmation dialog<br />
	function confirmationDialog(mesg:String) {<br />
		return flash.external.ExternalInterface.call("confirm", mesg);<br />
	}<br />
	//alert dialog<br />
	function alertDialog(mesg) {<br />
		return flash.external.ExternalInterface.call("alert", mesg);<br />
	}<br />
</code></p>
<p>I&#8217;m using Actionscript 2.0 in Multimedia Flash Professional 8. Confirmations and alerts will crash in Firefox for a while, then it will be okay and work perfectly for a few hours. I haven&#8217;t experienced any problems with IE9 or Chrome. Any help would be MUCH appreciated, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.psyked.co.uk/actionscript/externalinterface-not-working-in-firefox.htm/comment-page-1#comment-7328</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 20 Nov 2010 13:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://Here&#039;sawierdone.Let&#039;ssayyouhaveaflashnavigation-oneofthoseoldDHTMLstyledrop-downones,butdoneinflashandlayeredoverthetopofyourpagecontent.Youcanstickthewmodetotransparentandhaveatransparentbackgroundforyourf#comment-7328</guid>
		<description>My trouble is very strange. It&#039;s always OK in IE. but it&#039;s not OK in Firefox, when I just make the HTML file larger by adding some text in the html code.</description>
		<content:encoded><![CDATA[<p>My trouble is very strange. It&#8217;s always OK in IE. but it&#8217;s not OK in Firefox, when I just make the HTML file larger by adding some text in the html code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching 7/14 queries in 0.005 seconds using disk: basic
Object Caching 614/614 objects using disk: basic

Served from: www.psyked.co.uk @ 2012-02-10 19:15:38 -->
