<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments for dispatchEvent()™</title>
	<atom:link href="http://dispatchevent.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dispatchevent.org</link>
	<description>Collective thoughts of the New York Flash community</description>
	<lastBuildDate>Wed, 24 Jun 2009 22:08:49 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Building and Running AS3 Bible Examples by Mitch</title>
		<link>http://dispatchevent.org/roger/building-and-running-as3-bible-examples/comment-page-1/#comment-151634</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Wed, 24 Jun 2009 22:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/building-and-running-as3-bible-examples#comment-151634</guid>
		<description>Hi everybody! Im at the page 13 (Overriding variables) and i have no idea to run this code:

package {
    public class Local {
        public var a:String = &quot;instance&quot;;
        public var b:String = &quot;instance&quot;;
        public function method():void {
            var a:String = &quot;function&quot;;
            b = &quot;function&quot;;
            trace(a);
            trace(b);
        }
    }
}

Please help me run this (i can&#039;t run any code in this book except the Hello World example - same problem with the downloaded codes)

Please HEEEELP!!!

Can anyone explain step-by-step how to accomplish it?

Thank you!!</description>
		<content:encoded><![CDATA[<p>Hi everybody! Im at the page 13 (Overriding variables) and i have no idea to run this code:</p>
<p>package {<br />
    public class Local {<br />
        public var a:String = &#8220;instance&#8221;;<br />
        public var b:String = &#8220;instance&#8221;;<br />
        public function method():void {<br />
            var a:String = &#8220;function&#8221;;<br />
            b = &#8220;function&#8221;;<br />
            trace(a);<br />
            trace(b);<br />
        }<br />
    }<br />
}</p>
<p>Please help me run this (i can&#8217;t run any code in this book except the Hello World example &#8211; same problem with the downloaded codes)</p>
<p>Please HEEEELP!!!</p>
<p>Can anyone explain step-by-step how to accomplish it?</p>
<p>Thank you!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 E4X Rundown by bostown03</title>
		<link>http://dispatchevent.org/roger/as3-e4x-rundown/comment-page-2/#comment-151438</link>
		<dc:creator>bostown03</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/as3-e4x-rundown#comment-151438</guid>
		<description>This article is the shiznit!</description>
		<content:encoded><![CDATA[<p>This article is the shiznit!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 E4X Rundown by Borek</title>
		<link>http://dispatchevent.org/roger/as3-e4x-rundown/comment-page-2/#comment-150755</link>
		<dc:creator>Borek</dc:creator>
		<pubDate>Mon, 15 Jun 2009 08:08:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/as3-e4x-rundown#comment-150755</guid>
		<description>Excellent article, maybe you could just add that the curly braces syntax will work only if the double quotes are missing, i.e. this will work:



while this will not:

</description>
		<content:encoded><![CDATA[<p>Excellent article, maybe you could just add that the curly braces syntax will work only if the double quotes are missing, i.e. this will work:</p>
<p>while this will not:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Aliased Text in Eclipse on OS X by Eric the Grateful</title>
		<link>http://dispatchevent.org/roger/aliased-text-mac-eclipse/comment-page-1/#comment-150615</link>
		<dc:creator>Eric the Grateful</dc:creator>
		<pubDate>Sat, 13 Jun 2009 22:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://mimswright.com/blog/?p=121#comment-150615</guid>
		<description>The solution above, that is typing this into a terminal window, worked great for me:

defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20

Many grateful thanks, to Tim.</description>
		<content:encoded><![CDATA[<p>The solution above, that is typing this into a terminal window, worked great for me:</p>
<p>defaults write org.eclipse.eclipse AppleAntiAliasingThreshold 20</p>
<p>Many grateful thanks, to Tim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pimp my &#8216;clipse &#8211; a list of must-have Eclipse plug-ins for Flex/Flash Development by kgorham</title>
		<link>http://dispatchevent.org/mims/pimp-my-clipse-a-list-of-must-have-eclipse-plug-ins-for-flexflash-development/comment-page-1/#comment-150504</link>
		<dc:creator>kgorham</dc:creator>
		<pubDate>Fri, 12 Jun 2009 13:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://mimswright.com/blog/?p=216#comment-150504</guid>
		<description>Dash/Eclipse Monkey is awesome.  It lets you automate eclipse using JavaScript files that can be written quickly.  It also creates menu items and shortcut keys very easily.  Follow this example to automatically create getters and setters.  The blog is written for actionscript but it can be modified for any language.
http://eokyere.blogspot.com/2007/09/productivity-with-dash-in-eclipse.html

-kg</description>
		<content:encoded><![CDATA[<p>Dash/Eclipse Monkey is awesome.  It lets you automate eclipse using JavaScript files that can be written quickly.  It also creates menu items and shortcut keys very easily.  Follow this example to automatically create getters and setters.  The blog is written for actionscript but it can be modified for any language.<br />
<a href="http://eokyere.blogspot.com/2007/09/productivity-with-dash-in-eclipse.html" rel="nofollow">http://eokyere.blogspot.com/2007/09/productivity-with-dash-in-eclipse.html</a></p>
<p>-kg</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 number to hex converter by laughing</title>
		<link>http://dispatchevent.org/mims/as3-number-to-hex-converter/comment-page-1/#comment-150424</link>
		<dc:creator>laughing</dc:creator>
		<pubDate>Thu, 11 Jun 2009 12:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=618#comment-150424</guid>
		<description>Yeah, so i tried using this and ran into an overflow bug I believe.  Spent a good 15 minutes debugging it and then came back to see if anyone else had had the problem.  I guess I learned you should read to the bottom.

Good work Mario</description>
		<content:encoded><![CDATA[<p>Yeah, so i tried using this and ran into an overflow bug I believe.  Spent a good 15 minutes debugging it and then came back to see if anyone else had had the problem.  I guess I learned you should read to the bottom.</p>
<p>Good work Mario</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I Am Rich by axcho</title>
		<link>http://dispatchevent.org/mims/i-am-rich/comment-page-1/#comment-150089</link>
		<dc:creator>axcho</dc:creator>
		<pubDate>Fri, 05 Jun 2009 22:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=293#comment-150089</guid>
		<description>Brilliant. I should make a game like that. :D</description>
		<content:encoded><![CDATA[<p>Brilliant. I should make a game like that. :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The state of the Flash IDE and the FlashBuilder name change via Blogging by Craig</title>
		<link>http://dispatchevent.org/mims/flashidethought/comment-page-1/#comment-149478</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Fri, 29 May 2009 22:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=711#comment-149478</guid>
		<description>I believe Adobe is trying to improve Flash as an &#039;IDE&#039; by including better code hinting in the next CS5, but to me that still is not going to beat the power of FDT or for that matter FlashBuilder.</description>
		<content:encoded><![CDATA[<p>I believe Adobe is trying to improve Flash as an &#8216;IDE&#8217; by including better code hinting in the next CS5, but to me that still is not going to beat the power of FDT or for that matter FlashBuilder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Graph of Flash on Tap 2009 by Gerald</title>
		<link>http://dispatchevent.org/mims/graph-of-flash-on-tap-2009/comment-page-1/#comment-149387</link>
		<dc:creator>Gerald</dc:creator>
		<pubDate>Thu, 28 May 2009 22:38:41 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/mims/graph-of-flash-on-tap-2009/#comment-149387</guid>
		<description>Damn! I&#039;m on a train, coming in right now, and it sounds like I&#039;ve got some catching up to do when I arrive. Fingers crossed that I don&#039;t miss GS...</description>
		<content:encoded><![CDATA[<p>Damn! I&#8217;m on a train, coming in right now, and it sounds like I&#8217;ve got some catching up to do when I arrive. Fingers crossed that I don&#8217;t miss GS&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Graph of Flash on Tap 2009 by Jesse Freeman</title>
		<link>http://dispatchevent.org/mims/graph-of-flash-on-tap-2009/comment-page-1/#comment-149375</link>
		<dc:creator>Jesse Freeman</dc:creator>
		<pubDate>Thu, 28 May 2009 20:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/mims/graph-of-flash-on-tap-2009/#comment-149375</guid>
		<description>Once you hit that mark you turn out like this http://flashartofwar.com/wp-content/uploads/2009/05/flashonflar.jpg</description>
		<content:encoded><![CDATA[<p>Once you hit that mark you turn out like this <a href="http://flashartofwar.com/wp-content/uploads/2009/05/flashonflar.jpg" rel="nofollow">http://flashartofwar.com/wp-content/uploads/2009/05/flashonflar.jpg</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The state of the Flash IDE and the FlashBuilder name change via Blogging by Kevin S</title>
		<link>http://dispatchevent.org/mims/flashidethought/comment-page-1/#comment-149360</link>
		<dc:creator>Kevin S</dc:creator>
		<pubDate>Thu, 28 May 2009 13:47:20 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=711#comment-149360</guid>
		<description>Wow! Thank you so much for reading and for the compliments!</description>
		<content:encoded><![CDATA[<p>Wow! Thank you so much for reading and for the compliments!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlexBuilder / Eclipse keyboard shortcuts that will change your life by Mims H Wright</title>
		<link>http://dispatchevent.org/mims/flexbuilder-keyboard-shortcuts/comment-page-1/#comment-149212</link>
		<dc:creator>Mims H Wright</dc:creator>
		<pubDate>Wed, 27 May 2009 00:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=707#comment-149212</guid>
		<description>I&#039;ve seen a couple of changes in Gumbo, most notably COMMAND + O instead of CONTROL + O to see a list of definitions.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve seen a couple of changes in Gumbo, most notably COMMAND + O instead of CONTROL + O to see a list of definitions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 number to hex converter by mario gonzalez</title>
		<link>http://dispatchevent.org/mims/as3-number-to-hex-converter/comment-page-1/#comment-148641</link>
		<dc:creator>mario gonzalez</dc:creator>
		<pubDate>Thu, 21 May 2009 03:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=618#comment-148641</guid>
		<description>Or you could use:

var num:uint = 123456789
trace(num.toString(16))</description>
		<content:encoded><![CDATA[<p>Or you could use:</p>
<p>var num:uint = 123456789<br />
trace(num.toString(16))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code Samples for ActionScript Bible are online by Anon</title>
		<link>http://dispatchevent.org/mims/code-samples-for-actionscript-bible-are-online/comment-page-1/#comment-148637</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Thu, 21 May 2009 01:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://mimswright.com/blog/?p=196#comment-148637</guid>
		<description>http://rightactionscript.com/asb/

the official actionscript</description>
		<content:encoded><![CDATA[<p><a href="http://rightactionscript.com/asb/" rel="nofollow">http://rightactionscript.com/asb/</a></p>
<p>the official actionscript</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlexBuilder / Eclipse keyboard shortcuts that will change your life by onedayitwillmake</title>
		<link>http://dispatchevent.org/mims/flexbuilder-keyboard-shortcuts/comment-page-1/#comment-148535</link>
		<dc:creator>onedayitwillmake</dc:creator>
		<pubDate>Wed, 20 May 2009 01:19:39 +0000</pubDate>
		<guid isPermaLink="false">http://dispatchevent.org/?p=707#comment-148535</guid>
		<description>Could you make an attached printable text file or whatever out of this posting.

It&#039;s pretty great, I know you could copy paste (and i have), but i think it would benefit others plus if you have new additions.</description>
		<content:encoded><![CDATA[<p>Could you make an attached printable text file or whatever out of this posting.</p>
<p>It&#8217;s pretty great, I know you could copy paste (and i have), but i think it would benefit others plus if you have new additions.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
