<?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: Dealing with asynchronous events, part 3</title>
	<atom:link href="http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/</link>
	<description>music, technology, interfaces, people</description>
	<lastBuildDate>Mon, 19 Oct 2009 16:37:14 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: AS3 programming 101 for C/C++ coders - Geeky Derek</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-283151</link>
		<dc:creator>AS3 programming 101 for C/C++ coders - Geeky Derek</dc:creator>
		<pubDate>Mon, 25 May 2009 04:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-283151</guid>
		<description>[...] the issues of quot;Dealing with asynchronous eventsquot;. So far, he has Part 1, Part 2, and Part 3 available. I strongly recommend reading these articles. They provide a lot of good information for [...]</description>
		<content:encoded><![CDATA[<p>[...] the issues of quot;Dealing with asynchronous eventsquot;. So far, he has Part 1, Part 2, and Part 3 available. I strongly recommend reading these articles. They provide a lot of good information for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: veeky学习笔记&#187; Blog 存档 &#187; 处理异步事件，第三部分</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-97295</link>
		<dc:creator>veeky学习笔记&#187; Blog 存档 &#187; 处理异步事件，第三部分</dc:creator>
		<pubDate>Fri, 23 Nov 2007 14:12:54 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-97295</guid>
		<description>[...] 原文地址：http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/ [...]</description>
		<content:encoded><![CDATA[<p>[...] 原文地址：http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florecista&#8217;s Weblog</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-55252</link>
		<dc:creator>Florecista&#8217;s Weblog</dc:creator>
		<pubDate>Mon, 10 Sep 2007 05:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-55252</guid>
		<description>[...] Dealing with asynchronous events, part 3 [...]</description>
		<content:encoded><![CDATA[<p>[...] Dealing with asynchronous events, part 3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JCarver</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-30675</link>
		<dc:creator>JCarver</dc:creator>
		<pubDate>Sat, 09 Jun 2007 01:41:55 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-30675</guid>
		<description>Through blind luck I managed to get it working:
  call.addResponder(new mx.rpc.Responder(getAlbumInfoResult, null));

Still trying to work out why you have to add a reference to the package. I tried using an &quot;import mx.rpc.Responder;&quot; statement but got a different error which seemed to indicate there was more than one Responder class and that the compiler wasn&#039;t sure which one I meant.  Thanks again for the great article.</description>
		<content:encoded><![CDATA[<p>Through blind luck I managed to get it working:<br />
  call.addResponder(new mx.rpc.Responder(getAlbumInfoResult, null));</p>
<p>Still trying to work out why you have to add a reference to the package. I tried using an &#8220;import mx.rpc.Responder;&#8221; statement but got a different error which seemed to indicate there was more than one Responder class and that the compiler wasn&#8217;t sure which one I meant.  Thanks again for the great article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JCarver</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-30674</link>
		<dc:creator>JCarver</dc:creator>
		<pubDate>Sat, 09 Jun 2007 01:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-30674</guid>
		<description>OK, call me stupid.  Just starting with FLEX...
According to the LiveDocs, AsyncToken does NOT have a responder property. It does have a responders property but it is a read-only array. It also has an addResponder() method which SHOULD allow the code in your example to work something like this:
  call.addResponder(new Responder(getAlbumInfoResult, null));

Unfortunately, this doesn&#039;t work either. FlexBuilder complains with &quot;1067: Implicit coercion of a value of type flash.net:Responder to an unrelated type mx.rpc:IResponder.&quot;. I don&#039;t have enough understanding of the language yet to resolve this issue so will have to try something else.

Could you please indicate how this is supposed to work. Thanks.</description>
		<content:encoded><![CDATA[<p>OK, call me stupid.  Just starting with FLEX&#8230;<br />
According to the LiveDocs, AsyncToken does NOT have a responder property. It does have a responders property but it is a read-only array. It also has an addResponder() method which SHOULD allow the code in your example to work something like this:<br />
  call.addResponder(new Responder(getAlbumInfoResult, null));</p>
<p>Unfortunately, this doesn&#8217;t work either. FlexBuilder complains with &#8220;1067: Implicit coercion of a value of type flash.net:Responder to an unrelated type mx.rpc:IResponder.&#8221;. I don&#8217;t have enough understanding of the language yet to resolve this issue so will have to try something else.</p>
<p>Could you please indicate how this is supposed to work. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kuwamoto.org &#187; Blog Archive &#187; Asynchronous calls explained</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-21211</link>
		<dc:creator>kuwamoto.org &#187; Blog Archive &#187; Asynchronous calls explained</dc:creator>
		<pubDate>Wed, 25 Apr 2007 17:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-21211</guid>
		<description>[...] Note that this is a more basic (and common?) case than the stuff I was talking about earlier. For more advanced solutions, see here, here and here. From: XXXX@XXXXXXXXX [...]</description>
		<content:encoded><![CDATA[<p>[...] Note that this is a more basic (and common?) case than the stuff I was talking about earlier. For more advanced solutions, see here, here and here. From: XXXX@XXXXXXXXX [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dreamer</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-2602</link>
		<dc:creator>Dreamer</dc:creator>
		<pubDate>Thu, 17 Aug 2006 08:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-2602</guid>
		<description>Hi Sho,

I come back and want to translate this series of posts into Chinese.Your posts are so great.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Sho,</p>
<p>I come back and want to translate this series of posts into Chinese.Your posts are so great.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ele</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-2422</link>
		<dc:creator>Ele</dc:creator>
		<pubDate>Sun, 30 Jul 2006 09:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-2422</guid>
		<description>Anyway, that’s just my 2 cents: I think ECMA compliance is a bullet-point feature that could easily be binned. People aren’t choosing to develop in flash because the language is standards compliant, they’re choosing to develop in flash because of what it allows them to do on the web. I’d personally rather have a language that helped me find bugs before runtime than to have one that happens to be somewhat similar to javascript.</description>
		<content:encoded><![CDATA[<p>Anyway, that’s just my 2 cents: I think ECMA compliance is a bullet-point feature that could easily be binned. People aren’t choosing to develop in flash because the language is standards compliant, they’re choosing to develop in flash because of what it allows them to do on the web. I’d personally rather have a language that helped me find bugs before runtime than to have one that happens to be somewhat similar to javascript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike ross</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-783</link>
		<dc:creator>mike ross</dc:creator>
		<pubDate>Wed, 31 May 2006 01:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-783</guid>
		<description>thanks sho, for taking the time to explain that to me. I understand it better now. -mike.</description>
		<content:encoded><![CDATA[<p>thanks sho, for taking the time to explain that to me. I understand it better now. -mike.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray Greenwell</title>
		<link>http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/comment-page-1/#comment-777</link>
		<dc:creator>Ray Greenwell</dc:creator>
		<pubDate>Tue, 30 May 2006 20:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://kuwamoto.org/2006/05/19/dealing-with-asynchronous-events-part-3/#comment-777</guid>
		<description>Sho,

Thanks for taking the time to respond to me. I can respect the desire to keep the language a dynamic language at its core.

I wonder if it would be possible to add a new compiler directive called -warndynamic, or -superstrict or something, that warned of any accesses to properties that are not defined at compile time. Just a thought.</description>
		<content:encoded><![CDATA[<p>Sho,</p>
<p>Thanks for taking the time to respond to me. I can respect the desire to keep the language a dynamic language at its core.</p>
<p>I wonder if it would be possible to add a new compiler directive called -warndynamic, or -superstrict or something, that warned of any accesses to properties that are not defined at compile time. Just a thought.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
