<?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 for Flassari.is</title>
	<atom:link href="http://flassari.is/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://flassari.is</link>
	<description></description>
	<lastBuildDate>Fri, 23 Dec 2011 14:10:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>Comment on Flash Debug Player crashing Firefox by Adrian-Ionut Beschea</title>
		<link>http://flassari.is/2010/08/flash-debug-player-crashing-firefox/#comment-1021</link>
		<dc:creator>Adrian-Ionut Beschea</dc:creator>
		<pubDate>Fri, 23 Dec 2011 14:10:32 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=335#comment-1021</guid>
		<description>setting dom.ipc.plugins.timeoutSecs to -1 actually makes it worse on Firefox 8.0. 
dom.ipc.plugins.enabled.npswf32.dll is no longer available. 

for now, I set the timeout to 5 seconds to reduce the hang time. 

Is there a workaround for this ?  
Thannks</description>
		<content:encoded><![CDATA[<p>setting dom.ipc.plugins.timeoutSecs to -1 actually makes it worse on Firefox 8.0.<br />
dom.ipc.plugins.enabled.npswf32.dll is no longer available. </p>
<p>for now, I set the timeout to 5 seconds to reduce the hang time. </p>
<p>Is there a workaround for this ?<br />
Thannks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Line-Line Intersection in AS3 by Michael</title>
		<link>http://flassari.is/2009/04/line-line-intersection-in-as3/#comment-981</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 17 Dec 2011 21:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=104#comment-981</guid>
		<description>Just wanted to add that i have tried Keith Hairs code and it seems to work much better:
http://keith-hair.net/blog/2008/08/04/find-intersection-point-of-two-lines-in-as3/</description>
		<content:encoded><![CDATA[<p>Just wanted to add that i have tried Keith Hairs code and it seems to work much better:<br />
<a href="http://keith-hair.net/blog/2008/08/04/find-intersection-point-of-two-lines-in-as3/" rel="nofollow">http://keith-hair.net/blog/2008/08/04/find-intersection-point-of-two-lines-in-as3/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Line-Line Intersection in AS3 by Michael</title>
		<link>http://flassari.is/2009/04/line-line-intersection-in-as3/#comment-980</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 17 Dec 2011 21:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=104#comment-980</guid>
		<description>Sorry, your code doesn&#039;t work.

// this will give null
var p1= new Point(x=343.4729858398438, y=351.9473937988281);
var p2= new Point(x=628.6473937988281, y=351.9473937988281);
var p3= new Point(x=486.06018981933596, y=494.5345977783203);
var p4= new Point(x=486.06018981933596, y=209.36018981933594);
trace (intersection(p1,p2,p3,p4)); 

// but this will draw two intersecting lines
graphics.lineStyle(1);
graphics.moveTo(p1.x,p1.y);
graphics.lineTo(p2.x,p2.y);
graphics.moveTo(p3.x,p3.y);
graphics.lineTo(p4.x,p4.y);</description>
		<content:encoded><![CDATA[<p>Sorry, your code doesn&#8217;t work.</p>
<p>// this will give null<br />
var p1= new Point(x=343.4729858398438, y=351.9473937988281);<br />
var p2= new Point(x=628.6473937988281, y=351.9473937988281);<br />
var p3= new Point(x=486.06018981933596, y=494.5345977783203);<br />
var p4= new Point(x=486.06018981933596, y=209.36018981933594);<br />
trace (intersection(p1,p2,p3,p4)); </p>
<p>// but this will draw two intersecting lines<br />
graphics.lineStyle(1);<br />
graphics.moveTo(p1.x,p1.y);<br />
graphics.lineTo(p2.x,p2.y);<br />
graphics.moveTo(p3.x,p3.y);<br />
graphics.lineTo(p4.x,p4.y);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 &#8220;with&#8221; keyword and casting by jooj</title>
		<link>http://flassari.is/2010/07/as3-with-keyword-and-casting/#comment-970</link>
		<dc:creator>jooj</dc:creator>
		<pubDate>Fri, 16 Dec 2011 08:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=321#comment-970</guid>
		<description>Simpler:

var child:MovieClip = getChildThatMightBeMovieClip() as MovieClip;
 
if (child) {
    ...
}</description>
		<content:encoded><![CDATA[<p>Simpler:</p>
<p>var child:MovieClip = getChildThatMightBeMovieClip() as MovieClip;</p>
<p>if (child) {<br />
    &#8230;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Number Format - Thousand Separator in AS3 by Spiroszaf</title>
		<link>http://flassari.is/2009/08/number-format-thousand-separator-in-as3/#comment-955</link>
		<dc:creator>Spiroszaf</dc:creator>
		<pubDate>Wed, 14 Dec 2011 14:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=166#comment-955</guid>
		<description>Hey! Thanks alot for sharing this. It helped me big time!</description>
		<content:encoded><![CDATA[<p>Hey! Thanks alot for sharing this. It helped me big time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Number Format - Thousand Separator in AS3 by Gorjan</title>
		<link>http://flassari.is/2009/08/number-format-thousand-separator-in-as3/#comment-898</link>
		<dc:creator>Gorjan</dc:creator>
		<pubDate>Fri, 09 Dec 2011 16:21:42 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=166#comment-898</guid>
		<description>Great stuff. Thanks for saving me some time when I had none :)</description>
		<content:encoded><![CDATA[<p>Great stuff. Thanks for saving me some time when I had none :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pie mask in AS3 by Flassari</title>
		<link>http://flassari.is/2009/11/pie-mask-in-as3/#comment-859</link>
		<dc:creator>Flassari</dc:creator>
		<pubDate>Wed, 07 Dec 2011 08:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=240#comment-859</guid>
		<description>@pheck: You can create an instance of &lt;a href=&quot;http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/utils/Timer.html&quot; rel=&quot;nofollow&quot;&gt;Timer&lt;/a&gt; and call drawPieMask in your event handler.</description>
		<content:encoded><![CDATA[<p>@pheck: You can create an instance of <a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/utils/Timer.html" rel="nofollow">Timer</a> and call drawPieMask in your event handler.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 Polygon Clipper by Bog Imp</title>
		<link>http://flassari.is/2011/05/as3-polygon-clipper/#comment-815</link>
		<dc:creator>Bog Imp</dc:creator>
		<pubDate>Thu, 01 Dec 2011 11:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=408#comment-815</guid>
		<description>Hello,
Can you add method clipPolygons that work with 

Polygons subjectPolygons


it&#039;s will be amazing, i found that Clipper by Angus Johnson has this functionality.</description>
		<content:encoded><![CDATA[<p>Hello,<br />
Can you add method clipPolygons that work with </p>
<p>Polygons subjectPolygons</p>
<p>it&#8217;s will be amazing, i found that Clipper by Angus Johnson has this functionality.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pie mask in AS3 by pheck</title>
		<link>http://flassari.is/2009/11/pie-mask-in-as3/#comment-749</link>
		<dc:creator>pheck</dc:creator>
		<pubDate>Mon, 21 Nov 2011 19:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=240#comment-749</guid>
		<description>Is there any way I can put a timer on the drawPieMask Function so it creates the pie according to some duration specified on the function?</description>
		<content:encoded><![CDATA[<p>Is there any way I can put a timer on the drawPieMask Function so it creates the pie according to some duration specified on the function?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Number Format - Thousand Separator in AS3 by Mgcool</title>
		<link>http://flassari.is/2009/08/number-format-thousand-separator-in-as3/#comment-714</link>
		<dc:creator>Mgcool</dc:creator>
		<pubDate>Wed, 16 Nov 2011 23:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://flassari.is/?p=166#comment-714</guid>
		<description>This is exactly what i was looking for. Regards. MX</description>
		<content:encoded><![CDATA[<p>This is exactly what i was looking for. Regards. MX</p>
]]></content:encoded>
	</item>
</channel>
</rss>

