<?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: Popups Blocked in AS3 with navigateToURL()</title>
	<atom:link href="http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/</link>
	<description>Progressive Web Development</description>
	<pubDate>Thu, 20 Nov 2008 13:02:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Flex/Flash navigation link problems in Mac OS X &#171; Document As You Go</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-258</link>
		<dc:creator>Flex/Flash navigation link problems in Mac OS X &#171; Document As You Go</dc:creator>
		<pubDate>Fri, 14 Nov 2008 04:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-258</guid>
		<description>[...] initially thought that a popup blocker was probably causing the problem with navigateToURL() so I tried exploring changing the AllowScriptAccess parameter to &#8220;always&#8221; and use [...]</description>
		<content:encoded><![CDATA[<p>[...] initially thought that a popup blocker was probably causing the problem with navigateToURL() so I tried exploring changing the AllowScriptAccess parameter to &#8220;always&#8221; and use [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jared</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-221</link>
		<dc:creator>jared</dc:creator>
		<pubDate>Sat, 11 Oct 2008 05:59:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-221</guid>
		<description>firefox 3.03 not working with this.</description>
		<content:encoded><![CDATA[<p>firefox 3.03 not working with this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terbooter</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-191</link>
		<dc:creator>terbooter</dc:creator>
		<pubDate>Thu, 11 Sep 2008 11:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-191</guid>
		<description>Fedora 8 ff3 without any addition plugins - not working</description>
		<content:encoded><![CDATA[<p>Fedora 8 ff3 without any addition plugins - not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordan</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-189</link>
		<dc:creator>jordan</dc:creator>
		<pubDate>Mon, 08 Sep 2008 16:54:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-189</guid>
		<description>Cow, I'm pretty sure you're not using the URLNavigator correctly. Are you saving and importing it like I wrote about in the 2nd paragraph in my post?

I can't really tell what you're trying to do, but send me an email with the files you're working with and I'll see if I can help you.</description>
		<content:encoded><![CDATA[<p>Cow, I&#8217;m pretty sure you&#8217;re not using the URLNavigator correctly. Are you saving and importing it like I wrote about in the 2nd paragraph in my post?</p>
<p>I can&#8217;t really tell what you&#8217;re trying to do, but send me an email with the files you&#8217;re working with and I&#8217;ll see if I can help you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cow</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-188</link>
		<dc:creator>cow</dc:creator>
		<pubDate>Mon, 08 Sep 2008 00:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-188</guid>
		<description>jordan,

i tried to replace this in the URLNavigator and I found no result? i am actually trying to make a navigation with three buttons that all call javascript pop ups? I noticed that if you try to copy and paste the code for the next button in the navigation and you receive a duplicate function issues as well. is there anyway you can send me a tid-bit of code regarding this first issue and now the following issue? thank you. 

kind regards ... cow</description>
		<content:encoded><![CDATA[<p>jordan,</p>
<p>i tried to replace this in the URLNavigator and I found no result? i am actually trying to make a navigation with three buttons that all call javascript pop ups? I noticed that if you try to copy and paste the code for the next button in the navigation and you receive a duplicate function issues as well. is there anyway you can send me a tid-bit of code regarding this first issue and now the following issue? thank you. </p>
<p>kind regards &#8230; cow</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordan</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-187</link>
		<dc:creator>jordan</dc:creator>
		<pubDate>Sun, 07 Sep 2008 23:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-187</guid>
		<description>Cow, you can modify URLNavigator to change the ExternalInterface.call line.

In JavaScript, window.open looks like this: window.open(url, windowName, features);

Take a look at Mozilla's docs for what you can put for "features": http://developer.mozilla.org/en/DOM/window.open

So in Flash, the ExternalInterface.call might look like this:
ExternalInterface.call("window.open", req.url, window, "width=400,height=500,top=50,left=200");

I'll probably modify URLNavigator so that you can pass that stuff in--good idea.</description>
		<content:encoded><![CDATA[<p>Cow, you can modify URLNavigator to change the ExternalInterface.call line.</p>
<p>In JavaScript, window.open looks like this: window.open(url, windowName, features);</p>
<p>Take a look at Mozilla&#8217;s docs for what you can put for &#8220;features&#8221;: <a href="http://developer.mozilla.org/en/DOM/window.open" rel="nofollow">http://developer.mozilla.org/en/DOM/window.open</a></p>
<p>So in Flash, the ExternalInterface.call might look like this:<br />
ExternalInterface.call(&#8221;window.open&#8221;, req.url, window, &#8220;width=400,height=500,top=50,left=200&#8243;);</p>
<p>I&#8217;ll probably modify URLNavigator so that you can pass that stuff in&#8211;good idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cow</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-186</link>
		<dc:creator>cow</dc:creator>
		<pubDate>Sun, 07 Sep 2008 23:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-186</guid>
		<description>jordan,

wow, this is a really great way to get pop ups!!! I have been working on this for a few days now and your way works. was wondering if there is any way to control the window even more, such as size, location where the window pops up? if you know how and any more attributes please do tell ... thank you again ... themadcow</description>
		<content:encoded><![CDATA[<p>jordan,</p>
<p>wow, this is a really great way to get pop ups!!! I have been working on this for a few days now and your way works. was wondering if there is any way to control the window even more, such as size, location where the window pops up? if you know how and any more attributes please do tell &#8230; thank you again &#8230; themadcow</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordan</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-184</link>
		<dc:creator>jordan</dc:creator>
		<pubDate>Sun, 31 Aug 2008 22:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-184</guid>
		<description>Mike, I've just now tested it and it worked. This method will only work if you call URLNavigator.ChangePage within a MouseEvent.CLICK listener; is that possibly the reason it's not working for you?</description>
		<content:encoded><![CDATA[<p>Mike, I&#8217;ve just now tested it and it worked. This method will only work if you call URLNavigator.ChangePage within a MouseEvent.CLICK listener; is that possibly the reason it&#8217;s not working for you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-182</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 30 Aug 2008 04:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-182</guid>
		<description>Hi, this solution not longer works in Firefox version 3 if the pop-up blocker is on. It seems that Firefox version 3 is more stringent with pop-ups.</description>
		<content:encoded><![CDATA[<p>Hi, this solution not longer works in Firefox version 3 if the pop-up blocker is on. It seems that Firefox version 3 is more stringent with pop-ups.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash &#124; Retrospective &#187; Blog Archive &#187; Flash:How to successfully open a new window in Firefox w/o being blocked???</title>
		<link>http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/#comment-181</link>
		<dc:creator>Flash &#124; Retrospective &#187; Blog Archive &#187; Flash:How to successfully open a new window in Firefox w/o being blocked???</dc:creator>
		<pubDate>Fri, 29 Aug 2008 23:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/flash/flash-and-popup-blocking/#comment-181</guid>
		<description>[...] http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/" rel="nofollow">http://www.zorked.com/flash/flash-and-navigatetourl-popup-blocking/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
