<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>dispatchEvent &#187; Authors</title>
	<link>http://www.partlyhuman.com/blog</link>
	<description>Welcome to dispatchEvent, a blog brought to you by Roger Braunstein of partlyhuman and Mims Wright of losdesigns.</description>
	<pubDate>Fri, 09 May 2008 06:49:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Welcome Caleb Johnston</title>
		<link>http://www.partlyhuman.com/blog/mims/welcome-caleb-johnston</link>
		<comments>http://www.partlyhuman.com/blog/mims/welcome-caleb-johnston#comments</comments>
		<pubDate>Thu, 01 May 2008 19:10:42 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[Authors]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=266</guid>
		<description><![CDATA[
We&#8217;re happy to announce a new addition to the blog - Caleb Johnston has joined as a contributor. Caleb is currently a developer at Your Majesty and is a swell guy.
Check out his first post.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://mimswright.com/blog/wp-content/uploads/2008/04/caleb.jpg" alt="" title="caleb" width="80" height="96" class="alignleft size-full wp-image-267" /><br />
We&#8217;re happy to announce a new addition to the blog - <a href="http://www.calebjohnston.com/blog/">Caleb Johnston</a> has joined as a contributor. Caleb is currently a developer at <a href="http://www.your-majesty.com/">Your Majesty</a> and is a swell guy.<br />
Check out his <a href="http://mimswright.com/blog/?p=269">first post</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/welcome-caleb-johnston/feed</wfw:commentRss>
		</item>
		<item>
		<title>ActionScript 3.0 Bible Errata</title>
		<link>http://www.partlyhuman.com/blog/mims/actionscript-30-bible-errata</link>
		<comments>http://www.partlyhuman.com/blog/mims/actionscript-30-bible-errata#comments</comments>
		<pubDate>Thu, 27 Mar 2008 20:14:43 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[AS3 Bible]]></category>

		<category><![CDATA[Authors]]></category>

		<category><![CDATA[actionscript 3.0 bible]]></category>

		<category><![CDATA[as3bible]]></category>

		<category><![CDATA[bible]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[errata]]></category>

		<category><![CDATA[error]]></category>

		<category><![CDATA[wiley]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=254</guid>
		<description><![CDATA[
Much like the authors of the original Bible, we authors of the ActionScript 3.0 Bible have caught a lot of heat over discrepancies in our book. Unfortunately, working with several co-authors has its drawbacks and I am not able to take full responsibility for all of the content. If you find problems or are having [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://mimswright.com/blog/?attachment_id=255' rel='attachment wp-att-255' title='BibleErrata'><img src='http://mimswright.com/blog/wp-content/uploads/2008/03/bibleerrata.jpg' alt='BibleErrata' /></a><br />
Much like the authors of the original Bible, we authors of the <a href="http://www.amazon.com/ActionScript-3-0-Bible-Roger-Braunstein/dp/0470135603">ActionScript 3.0 Bible</a> have caught a lot of heat over discrepancies in our book. Unfortunately, working with several co-authors has its drawbacks and I am not able to take full responsibility for all of the content. If you find problems or are having trouble compiling your code, I encourage you to please visit the <a href="http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470135603,descCd-ERRATA.html">Wiley website</a> to check for corrections and to fill out the errata form. The publisher will be better able to coordinate with the right people to fix any issues. </p>
<p>Please accept our apologies for the errors you&#8217;ve found so far.<br />
Mims</p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/actionscript-30-bible-errata/feed</wfw:commentRss>
		</item>
		<item>
		<title>Reader Question: Why isn&#8217;t event bubbling working</title>
		<link>http://www.partlyhuman.com/blog/mims/reader-question-why-isnt-event-bubbling-working</link>
		<comments>http://www.partlyhuman.com/blog/mims/reader-question-why-isnt-event-bubbling-working#comments</comments>
		<pubDate>Tue, 18 Mar 2008 18:24:18 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[AS3 Bible]]></category>

		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=252</guid>
		<description><![CDATA[A reader sent me this question. Thanks in advance to Michael:

i&#8217;m dispatching an event from a sprite after it fades in completely
dispatchEvent(new Event(Main.ENTER_SCREEN_COMPLETE));
i&#8217;m trying to listen for to this event but for some reason it doesn&#8217;t get picked up when  the capturing parameter is set to false.. that is for bubbling and the target [...]]]></description>
			<content:encoded><![CDATA[<p>A reader sent me this question. Thanks in advance to Michael:</p>
<blockquote><p>
i&#8217;m dispatching an event from a sprite after it fades in completely<br />
<code>dispatchEvent(new Event(Main.ENTER_SCREEN_COMPLETE));</code></p>
<p>i&#8217;m trying to listen for to this event but for some reason it doesn&#8217;t get picked up when  the capturing parameter is set to false.. that is for bubbling and the target phase.</p>
<p>This works<br />
<code>container.addEventListener(Main.ENTER_SCREEN_COMPLETE,  screenTweenComplete, <strong>true</strong>, 0, true);</code></p>
<p>This does NOT work<br />
<code>container.addEventListener(Main.ENTER_SCREEN_COMPLETE,  screenTweenComplete, <strong>false</strong>, 0, true);</code></p>
<p>Where container, is an ancestor to everything on the screen. Essentially its the the stage.</p>
<p>Any clues why this is happening?
</p></blockquote>
<p>Answer after the jump.<br />
 <a href="http://www.partlyhuman.com/blog/mims/reader-question-why-isnt-event-bubbling-working#more-252" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/reader-question-why-isnt-event-bubbling-working/feed</wfw:commentRss>
		</item>
		<item>
		<title>Pardon our dust</title>
		<link>http://www.partlyhuman.com/blog/roger/pardon-our-dust</link>
		<comments>http://www.partlyhuman.com/blog/roger/pardon-our-dust#comments</comments>
		<pubDate>Sun, 24 Feb 2008 00:52:28 +0000</pubDate>
		<dc:creator>Roger Braunstein</dc:creator>
		
		<category><![CDATA[Authors]]></category>

		<guid isPermaLink="false">http://www.partlyhuman.com/blog/roger/pardon-our-dust</guid>
		<description><![CDATA[Sorry, things are a bit broken while we sort out upgrading. Our apologies.
Upgrade complete!
]]></description>
			<content:encoded><![CDATA[<p><strike>Sorry, things are a bit broken while we sort out upgrading. Our apologies.</strike><br />
Upgrade complete!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/roger/pardon-our-dust/feed</wfw:commentRss>
		</item>
		<item>
		<title>Going to GDC!</title>
		<link>http://www.partlyhuman.com/blog/mims/going-to-gdc</link>
		<comments>http://www.partlyhuman.com/blog/mims/going-to-gdc#comments</comments>
		<pubDate>Fri, 15 Feb 2008 19:06:52 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Life]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Serious Stuff]]></category>

		<category><![CDATA[Video Games]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=241</guid>
		<description><![CDATA[Tomorrow morning I&#8217;m off to San Francisco for the Game Developers Conference! It&#8217;s very exciting! If you&#8217;re going too, send me an email and let&#8217;s meet up there. Here&#8217;s what I look like:

]]></description>
			<content:encoded><![CDATA[<p>Tomorrow morning I&#8217;m off to San Francisco for the <a href="http://gdconf.com">Game Developers Conference</a>! It&#8217;s very exciting! If you&#8217;re going too, send me an email and let&#8217;s meet up there. Here&#8217;s what I look like:</p>
<p><a href="http://www.flickr.com/photos/mims/tags/mimswright"><img src="http://farm1.static.flickr.com/1/2937872_0efbf69a3d.jpg" alt="mimzilla" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/going-to-gdc/feed</wfw:commentRss>
		</item>
		<item>
		<title>Skrypt Kidz 3000 - Episode 2 - Flash Developers VS. Flash Designers</title>
		<link>http://www.partlyhuman.com/blog/mims/skrypt-kidz-3000-episode-2-flash-developers-vs-flash-designers</link>
		<comments>http://www.partlyhuman.com/blog/mims/skrypt-kidz-3000-episode-2-flash-developers-vs-flash-designers#comments</comments>
		<pubDate>Mon, 03 Dec 2007 02:51:14 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Podcast]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Site-seeing]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=211</guid>
		<description><![CDATA[
A new episode of Brooklyn Skrypt Kidz has been posted where we talk about the ever-widening gap between Flash designers and Developers.
Go there / Do that / Be There
]]></description>
			<content:encoded><![CDATA[<p><a href="http://skryptkidz.com/blog/"><img src="http://skryptkidz.com/blog/wp-content/uploads/skryptkidz-logo.png" alt="Skrypt Kidz 3000" width="128" /></a></p>
<p>A new episode of Brooklyn Skrypt Kidz has been posted where we talk about the ever-widening gap between Flash designers and Developers.</p>
<p><strong><a href="http://skryptkidz.com/blog/">Go there / Do that / Be There</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/skrypt-kidz-3000-episode-2-flash-developers-vs-flash-designers/feed</wfw:commentRss>
		</item>
		<item>
		<title>Skrypt Kidz 3000 Podcast</title>
		<link>http://www.partlyhuman.com/blog/mims/skrypt-kidz-3000-podcast</link>
		<comments>http://www.partlyhuman.com/blog/mims/skrypt-kidz-3000-podcast#comments</comments>
		<pubDate>Mon, 19 Nov 2007 15:17:40 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[OMGWTFBBQ]]></category>

		<category><![CDATA[Podcast]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Rants]]></category>

		<category><![CDATA[Schematicers]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=190</guid>
		<description><![CDATA[
Update: We&#8217;re up on iTunes! 
  

A few weeks ago we asked you what you would want to hear from a new Flash podcast. The votes came in with a tutorial based podcast in the lead with 44%, followed by a discussion by experts with 18% and a healthy chunk of you (16%) thought [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://skryptkidz.com/blog"><img src="http://skryptkidz.com/blog/wp-content/uploads/skryptkidz-logo.png" ></a></p>
<p><strong>Update:</strong> We&#8217;re up on iTunes! <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=268467430"><br />
  <img height="15" width="61" alt="Mims H. Wright - Skrypt Kidz 3000 - Skrypt Kidz 3000" src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif"></img><br />
</a></p>
<p>A few weeks ago we asked you what you would want to hear from a new Flash podcast. The votes came in with a tutorial based podcast in the lead with 44%, followed by a discussion by experts with 18% and a healthy chunk of you (16%) thought it was irresponsible for us to bring another new podcast soul into this cruel world.</p>
<p><em>You</em> told us what <em>you</em> wanted to hear and <em>we</em> listened to <em>you</em>.</p>
<p>But then we decided to ignore your suggestions and do something completely different.</p>
<p>It&#8217;s my pleasure to present <a href="http://skryptkidz.com/blog">Skrypt Kidz 3000</a> &mdash; a new semi-regular podcast where a barbarous crew of Flash and Flex developers get together to spend our precious weekend hours yakking about Flash issues. In our inaugural episode we discuss the pros and cons of using Flex over Flash. We also talk about Flex and FDT pricing and Adobe&#8217;s new wireframing tool <a href="http://mimswright.com/blog/?p=185">Thermo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/skrypt-kidz-3000-podcast/feed</wfw:commentRss>
		</item>
		<item>
		<title>Code Samples for ActionScript Bible are online</title>
		<link>http://www.partlyhuman.com/blog/mims/code-samples-for-actionscript-bible-are-online</link>
		<comments>http://www.partlyhuman.com/blog/mims/code-samples-for-actionscript-bible-are-online#comments</comments>
		<pubDate>Tue, 13 Nov 2007 16:38:10 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Serious Stuff]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=196</guid>
		<description><![CDATA[Hey people,
I and my publishers have gotten many comments about the lack of code samples on the AS3 Bible website. I just wanted to let you know that they&#8217;re up (mostly). The remaining chapters should be up this week.
Get it here under the download tab.
]]></description>
			<content:encoded><![CDATA[<p>Hey people,</p>
<p>I and my publishers have gotten many comments about the lack of code samples on the <a href="http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470135603,descCd-DOWNLOAD.html">AS3 Bible website</a>. I just wanted to let you know that they&#8217;re up <strike>(mostly). The remaining chapters should be up this week.</strike></p>
<p><a href="http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470135603,descCd-DOWNLOAD.html">Get it here</a> under the download tab.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/code-samples-for-actionscript-bible-are-online/feed</wfw:commentRss>
		</item>
		<item>
		<title>ActionScript 3.0 Bible Available Now</title>
		<link>http://www.partlyhuman.com/blog/mims/actionscript-30-bible-available-now</link>
		<comments>http://www.partlyhuman.com/blog/mims/actionscript-30-bible-available-now#comments</comments>
		<pubDate>Wed, 07 Nov 2007 00:03:51 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Schematicers]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=188</guid>
		<description><![CDATA[

View this article in other languages:

Russian (Руский) translation by Michael


After nearly a year in development I&#8217;m very proud to announce that the ActionScript 3.0 bible has hit the shelves. This is our first book and its very exciting for us. The AS3 Bible is not just an update to the previous edition, the Flash 8 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/ActionScript-3-0-Bible-Roger-Braunstein/dp/0470135603"><img src="http://media.wiley.com/product_data/coverImage300/03/04701356/0470135603.jpg"/></a></p>
<div style="font-size: 0.8em; background-color: #eee; padding: 0.5em; margin-bottom: 1em">
<em>View this article in other languages:</em></p>
<ul>
<li><a href="http://blog.yesutin.com/?p=26">Russian (Руский) translation</a> by Michael</li>
</ul>
</div>
<p>After nearly a year in development I&#8217;m very proud to announce that the ActionScript 3.0 bible has hit the shelves. This is our first book and its very exciting for us. The AS3 Bible is not just an update to the previous edition, the Flash 8 ActionScript Bible, but was written from the ground up with ActionScript 3.0 development in mind. We tried to focus on topics that matter to real world developers and to make it just as useful for experienced AS2 developers as it is for beginning programmers.</p>
<p>We&#8217;ve put a lot into this book and sincerely hope you enjoy it.</p>
<p><a href="http://www.amazon.com/ActionScript-3-0-Bible-Roger-Braunstein/dp/0470135603">Get it at Amazon</a></p>
<p>NOTE: many people have been complaining about the lack of code on the companion site. We&#8217;re currently working with our publisher to get that sorted out as soon as possible and hopefully it should be up by the end of the week.</p>
<p><img src='http://mimswright.com/blog/wp-content/uploads/2007/11/1850486095_377aa1f93b_o.jpg' alt='Mims with Bible' style="width:100%;" /></p>
<p><em>I asked a passing hobo to pose for a picture with the new Bible</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/actionscript-30-bible-available-now/feed</wfw:commentRss>
		</item>
		<item>
		<title>Flash / Flex podcast</title>
		<link>http://www.partlyhuman.com/blog/mims/flash-flex-podcast</link>
		<comments>http://www.partlyhuman.com/blog/mims/flash-flex-podcast#comments</comments>
		<pubDate>Wed, 17 Oct 2007 22:55:04 +0000</pubDate>
		<dc:creator>Mims Wright</dc:creator>
		
		<category><![CDATA[Authors]]></category>

		<category><![CDATA[Conferences and User Groups]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Rants]]></category>

		<category><![CDATA[Serious Stuff]]></category>

		<guid isPermaLink="false">http://mimswright.com/blog/?p=187</guid>
		<description><![CDATA[I&#8217;ve been kicking around the idea of starting a Flash / Flex podcast. The plan is to get drunk and talk about Flash but maybe you have a better idea.
Do you care? Would you listen? What should we call it? What should we talk about? What topics would you like to hear discussed?
Please leave us [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been kicking around the idea of starting a Flash / Flex podcast. The plan is to get drunk and talk about Flash but maybe you have a better idea.<br />
Do you care? Would you listen? What should we call it? What should we talk about? What topics would you like to hear discussed?<br />
Please leave us any feedback you like.</p>
<div>
	<div class='democracy'>
		<strong class="poll-question">What would you want to hear on a Flash / Flex podcast?</strong>
		<div class='dem-results'>
		<form action='http://www.partlyhuman.com/blog/wp-content/plugins/democracy/democracy.php' onsubmit='return dem_Vote(this)'>
		<ul>
			<li>
					<input type='radio' id='dem-choice-9' value='9' name='dem_poll_4' />
					<label for='dem-choice-9'>Tech tips, tutorials, shortcuts, etc. such as how to work with states in Flex</label>
			</li>
			<li>
					<input type='radio' id='dem-choice-10' value='10' name='dem_poll_4' />
					<label for='dem-choice-10'>News about Flash and other Adobe Products</label>
			</li>
			<li>
					<input type='radio' id='dem-choice-11' value='11' name='dem_poll_4' />
					<label for='dem-choice-11'>Listen to experts discuss (bitch about) a topic such as how to talk your clients into using Flash</label>
			</li>
			<li>
					<input type='radio' id='dem-choice-12' value='12' name='dem_poll_4' />
					<label for='dem-choice-12'>Please, for the sake of all that is good, THE LAST THING WE NEED IS ANOTHER FUCKING PODCAST!</label>
			</li>
			<li>
					<input type='radio' id='dem-choice-13' value='13' name='dem_poll_4' />
					<label for='dem-choice-13'>What's a podcast? I'm going back under my rock.</label>
			</li>
			<li>
					<input type='radio' id='dem-choice-14' value='14' name='dem_poll_4' />
					<label for='dem-choice-14'>“New user experiences on the web” : demo some web2 applications and the way they improve user experience on the web</label>
			</li>
			<li>
					<input type='radio' id='dem-choice-15' value='15' name='dem_poll_4' />
					<label for='dem-choice-15'>SectionCasts: Tutorials in one section, Discussions in another section, Noob Development in another</label>
			</li>
		</ul>
			<input type='hidden' name='dem_poll_id' value='4' />
			<input type='hidden' name='dem_action' value='vote' />
			<input type='submit' class='dem-vote-button' value='Vote' />
			<a href='/blog/category/authors/feed?dem_action=view&amp;dem_poll_id=4' onclick='return dem_getVotes("http://www.partlyhuman.com/blog/wp-content/plugins/democracy/democracy.php?dem_action=view&amp;dem_poll_id=4", this)' rel='nofollow' class='dem-vote-link'>View Results</a>
		</form>
		</div>
	</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.partlyhuman.com/blog/mims/flash-flex-podcast/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
