<?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: Cancelable Function</title>
	<atom:link href="http://jacksondunstan.com/articles/674/feed" rel="self" type="application/rss+xml" />
	<link>http://jacksondunstan.com/articles/674</link>
	<description>Mastering AS3</description>
	<lastBuildDate>Tue, 07 Feb 2012 09:30:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: OffibrerafRak</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-2738</link>
		<dc:creator>OffibrerafRak</dc:creator>
		<pubDate>Sat, 08 Jan 2011 07:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-2738</guid>
		<description>хороший у вас блог, быду заходить</description>
		<content:encoded><![CDATA[<p>хороший у вас блог, быду заходить</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackson</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-645</link>
		<dc:creator>jackson</dc:creator>
		<pubDate>Fri, 28 May 2010 18:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-645</guid>
		<description>Good thing we have &lt;a href=&quot;http://github.com/robertpenner/as3-signals&quot; rel=&quot;nofollow&quot;&gt;as3signals&lt;/a&gt; and &lt;a href=&quot;http://jacksondunstan.com/turbosignals&quot; rel=&quot;nofollow&quot;&gt;TurboSignals&lt;/a&gt;! ;-)</description>
		<content:encoded><![CDATA[<p>Good thing we have <a href="http://github.com/robertpenner/as3-signals" rel="nofollow">as3signals</a> and <a href="http://jacksondunstan.com/turbosignals" rel="nofollow">TurboSignals</a>! ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Penner</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-644</link>
		<dc:creator>Robert Penner</dc:creator>
		<pubDate>Fri, 28 May 2010 18:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-644</guid>
		<description>The great thing about AS3 events is that you can add listeners for the wrong events and nothing lets you know--compile or run-time. You just sit around wondering why nothing&#039;s happening.</description>
		<content:encoded><![CDATA[<p>The great thing about AS3 events is that you can add listeners for the wrong events and nothing lets you know&#8211;compile or run-time. You just sit around wondering why nothing&#8217;s happening.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackson</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-643</link>
		<dc:creator>jackson</dc:creator>
		<pubDate>Fri, 28 May 2010 17:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-643</guid>
		<description>Good catch. Clearly I never actually ran that code. :) And I totally agree about contentLoaderInfo and the whole process of doing a load. I knew almost as soon as I started loading (a lot) with AS3 that I&#039;d need to abstract all that into something more like &lt;tt&gt;LoadHelper.load(url, callback)&lt;/tt&gt;.</description>
		<content:encoded><![CDATA[<p>Good catch. Clearly I never actually ran that code. :) And I totally agree about contentLoaderInfo and the whole process of doing a load. I knew almost as soon as I started loading (a lot) with AS3 that I&#8217;d need to abstract all that into something more like <tt>LoadHelper.load(url, callback)</tt>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Penner</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-642</link>
		<dc:creator>Robert Penner</dc:creator>
		<pubDate>Fri, 28 May 2010 17:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-642</guid>
		<description>This is a cool idea, and it&#039;s great to see it in multiple languages.

A small point--

loader.addEventListener(Event.COMPLETE,

--should be:

loader.contentLoaderInfo.addEventListener(Event.COMPLETE,

I blame Macromedia for this one, though. It&#039;s so unintuitive.</description>
		<content:encoded><![CDATA[<p>This is a cool idea, and it&#8217;s great to see it in multiple languages.</p>
<p>A small point&#8211;</p>
<p>loader.addEventListener(Event.COMPLETE,</p>
<p>&#8211;should be:</p>
<p>loader.contentLoaderInfo.addEventListener(Event.COMPLETE,</p>
<p>I blame Macromedia for this one, though. It&#8217;s so unintuitive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackson</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-638</link>
		<dc:creator>jackson</dc:creator>
		<pubDate>Tue, 11 May 2010 17:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-638</guid>
		<description>That&#039;s definitely another option. Personally, I prefer to change only the objects I need to change rather than globally changing all &lt;tt&gt;Functions&lt;/tt&gt;. If you prefer differently, it should be easy to apply this technique using the &lt;tt&gt;Function&lt;/tt&gt; prototype. If you do, would you mind posting your implementation here?</description>
		<content:encoded><![CDATA[<p>That&#8217;s definitely another option. Personally, I prefer to change only the objects I need to change rather than globally changing all <tt>Functions</tt>. If you prefer differently, it should be easy to apply this technique using the <tt>Function</tt> prototype. If you do, would you mind posting your implementation here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: y_nk</title>
		<link>http://jacksondunstan.com/articles/674/comment-page-1#comment-636</link>
		<dc:creator>y_nk</dc:creator>
		<pubDate>Tue, 11 May 2010 09:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://jacksondunstan.com/?p=674#comment-636</guid>
		<description>Hello,

This looks very usefull thanks. Why not overriding the Function prototype to add this feature natively ? Function class is dynamic, it shouldn&#039;t be a problem. There&#039;s a french article about prototypes in as3, you may find the examples usefull : http://bit.ly/aVY0Hw</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>This looks very usefull thanks. Why not overriding the Function prototype to add this feature natively ? Function class is dynamic, it shouldn&#8217;t be a problem. There&#8217;s a french article about prototypes in as3, you may find the examples usefull : <a href="http://bit.ly/aVY0Hw" rel="nofollow">http://bit.ly/aVY0Hw</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

