<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Meet Andrew Nguyen</title>
	<atom:link href="http://meetandrew.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://meetandrew.com</link>
	<description>User Experience Designer, Flash Platform Developer</description>
	<lastBuildDate>Mon, 01 Jun 2009 07:35:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flash Builder 4 beta is here!</title>
		<link>http://meetandrew.com/2009/05/31/flash-builder-4-beta-is-here/</link>
		<comments>http://meetandrew.com/2009/05/31/flash-builder-4-beta-is-here/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 07:35:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://meetandrew.com/?p=51</guid>
		<description><![CDATA[Adobe released Flash Builder (formerly Flex Builder) 4 beta today.  You can check it out here. Also, be sure to check out what&#8217;s new in FB4 here.


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Adobe released Flash Builder (formerly Flex Builder) 4 beta today.  You can check it out <a href="http://labs.adobe.com/technologies/flashbuilder4/">here</a>. Also, be sure to check out what&#8217;s new in FB4 <a href="http://www.adobe.com/devnet/flex/articles/flex4builder_whatsnew.html">here</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/05/31/flash-builder-4-beta-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting social networking for non-profits</title>
		<link>http://meetandrew.com/2009/05/15/starting-social-networking-for-non-profits/</link>
		<comments>http://meetandrew.com/2009/05/15/starting-social-networking-for-non-profits/#comments</comments>
		<pubDate>Fri, 15 May 2009 15:49:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Presentations]]></category>
		<category><![CDATA[non profits]]></category>
		<category><![CDATA[public relations]]></category>
		<category><![CDATA[slides]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://meetandrew.com/?p=48</guid>
		<description><![CDATA[I&#8217;m currently working on a presentation on an introduction to social networking and how it relates to public relations, specifically for non profits.  I&#8217;ll keep you guys updated and post slides after my presentation in June.


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on a presentation on an introduction to social networking and how it relates to public relations, specifically for non profits.  I&#8217;ll keep you guys updated and post slides after my presentation in June.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/05/15/starting-social-networking-for-non-profits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS2 to AS3 Buttons</title>
		<link>http://meetandrew.com/2009/02/18/as2-to-as3-buttons/</link>
		<comments>http://meetandrew.com/2009/02/18/as2-to-as3-buttons/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 08:39:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS2 to AS3 Migration]]></category>
		<category><![CDATA[actionscript2]]></category>
		<category><![CDATA[actionscript3]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[cookbook]]></category>
		<category><![CDATA[migration]]></category>

		<guid isPermaLink="false">http://meetandrew.com/?p=34</guid>
		<description><![CDATA[In ActionScript 3, Adobe got rid of attatching code directly to the MovieClip or Button you were working with on the the timeline.
So no more of this:
1234on&#40;press&#41;
&#123;
//do something
&#125;
For code on the timeline that affects a button (whose instance name we&#8217;ll call &#8220;button&#8221;), we used to do this in AS2:
1234button.onPress = function&#40;&#41;
&#123;
//do someting;
&#125;
Now in AS3, we [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>In ActionScript 3, Adobe got rid of attatching code directly to the MovieClip or Button you were working with on the the timeline.</p>
<p>So no more of this:</p>
<div class="codecolorer-container actionscript " style="overflow:auto;white-space:nowrap;width:435px"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="actionscript codecolorer" style="font-family:Monaco,Lucida Console,monospace"><span class="kw3">on</span><span class="br0">&#40;</span>press<span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
<span class="co1">//do something</span><br />
<span class="br0">&#125;</span></div></td></tr></tbody></table></div>
<p>For code on the timeline that affects a button (whose instance name we&#8217;ll call &#8220;button&#8221;), we used to do this in AS2:</p>
<div class="codecolorer-container actionscript " style="overflow:auto;white-space:nowrap;width:435px"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="actionscript codecolorer" style="font-family:Monaco,Lucida Console,monospace"><span class="kw3">button</span>.<span class="kw3">onPress</span> = <span class="kw2">function</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
<span class="br0">&#123;</span><br />
<span class="co1">//do someting;</span><br />
<span class="br0">&#125;</span></div></td></tr></tbody></table></div>
<p>Now in AS3, we have something a little more &#8220;wordy&#8221;:</p>
<div class="codecolorer-container actionscript3 " style="overflow:auto;white-space:nowrap;width:435px"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="actionscript3 codecolorer" style="font-family:Monaco,Lucida Console,monospace">button.<span class="kw7">addEventListener</span><span class="br0">&#40;</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html&amp;filter=0&amp;num=100&amp;btnI=lucky"><span class="kw5">MouseEvent</span></a>.<span class="kw8">MOUSE_DOWN</span>,handleClick<span class="br0">&#41;</span>;<br />
<span class="kw3">function</span> handleClick<span class="br0">&#40;</span>e<span class="sy0">:</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html&amp;filter=0&amp;num=100&amp;btnI=lucky"><span class="kw5">MouseEvent</span></a><span class="br0">&#41;</span><span class="sy0">:</span><span class="kw1">void</span><br />
<span class="br0">&#123;</span><br />
<span class="co1">//do someting;</span><br />
<span class="br0">&#125;</span></div></td></tr></tbody></table></div>
<p>One thing to understand about ActionScript 3 is that it is an event driven language.  You listen for events, events get dispatched, and you handle them appropripately.  I&#8217;ll break down the code for you.</p>
<div class="codecolorer-container actionscript3 " style="overflow:auto;white-space:nowrap;width:435px"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>1<br /></div></td><td><div class="actionscript3 codecolorer" style="font-family:Monaco,Lucida Console,monospace">button.<span class="kw7">addEventListener</span><span class="br0">&#40;</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html&amp;filter=0&amp;num=100&amp;btnI=lucky"><span class="kw5">MouseEvent</span></a>.<span class="kw8">MOUSE_DOWN</span>,handleClick<span class="br0">&#41;</span>;</div></td></tr></tbody></table></div>
<p>What we&#8217;re saying on line 1 is here, we have a button that will listen for MouseEvent.MOUSE_DOWN events, and if that happens run the handleClick function.</p>
<div class="codecolorer-container actionscript3 " style="overflow:auto;white-space:nowrap;width:435px"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>2<br /></div></td><td><div class="actionscript3 codecolorer" style="font-family:Monaco,Lucida Console,monospace"><span class="kw3">function</span> handleClick<span class="br0">&#40;</span>e<span class="sy0">:</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html&amp;filter=0&amp;num=100&amp;btnI=lucky"><span class="kw5">MouseEvent</span></a><span class="br0">&#41;</span><span class="sy0">:</span><span class="kw1">void</span></div></td></tr></tbody></table></div>
<p>Here, we&#8217;re just defining the function &#8220;handleClick.&#8221;  It accepts an argument of type MouseEvent and :void means it doesn&#8217;t return anything.</p>
<p>As you can see, AS3 for buttons isn&#8217;t too difficult, just a little wordier.  Below, I&#8217;ve listed the old way of handling buttons with their new event listeners.  Just swap out the MouseEvents for what you need when you add the event listener.</p>
<table border="0">
<tbody>
<tr>
<td>AS2</td>
<td>AS3</td>
</tr>
<tr>
<td>button.onPress</td>
<td>MouseEvent.MOUSE_DOWN</td>
</tr>
<tr>
<td>button.onRelease</td>
<td>MouseEvent.MOUSE_UP</td>
</tr>
<tr>
<td>button.onRollOver</td>
<td>MouseEvent.MOUSE_OVER</td>
</tr>
<tr>
<td>button.onRollOut</td>
<td>MouseEvent.MOUSE_OUT</td>
</tr>
</tbody>
</table>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/02/18/as2-to-as3-buttons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ActionScript 2 to ActionScript 3 Migration Cookbook</title>
		<link>http://meetandrew.com/2009/02/17/actionscript-2-to-actionscript-3-migration-cookbook/</link>
		<comments>http://meetandrew.com/2009/02/17/actionscript-2-to-actionscript-3-migration-cookbook/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 06:58:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS2 to AS3 Migration]]></category>
		<category><![CDATA[actionscript2]]></category>
		<category><![CDATA[actionscript3]]></category>
		<category><![CDATA[cookbook]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://meetandrew.com/?p=31</guid>
		<description><![CDATA[I&#8217;m starting a new series of mini how-to&#8217;s to ease ActionScript 2 migration to ActionScript 3.  AS3, as we like to call it, is a much cleaner and more standardized language; not to mention a whole lot faster.  Adobe has really been urging everyone who works with Flash to switch to AS3.
So if you&#8217;ve been [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m starting a new series of mini how-to&#8217;s to ease ActionScript 2 migration to ActionScript 3.  AS3, as we like to call it, is a much cleaner and more standardized language; not to mention a whole lot faster.  Adobe has really been urging everyone who works with Flash to switch to AS3.</p>
<p>So if you&#8217;ve been putting migration off, now is the time to learn.  These recipe style how-tos will be targeted to mostly Flash Designers and novice to intermediate developers who haven&#8217;t made the switch quite yet.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/02/17/actionscript-2-to-actionscript-3-migration-cookbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m at FlexCampOC!</title>
		<link>http://meetandrew.com/2009/01/31/im-at-flexcampoc/</link>
		<comments>http://meetandrew.com/2009/01/31/im-at-flexcampoc/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 18:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flexcampoc]]></category>

		<guid isPermaLink="false">http://meetandrew.com/2009/01/31/im-at-flexcampoc/</guid>
		<description><![CDATA[I&#8217;m here at FlexCampOC at the Boeing Conference Center in Huntington Beach.  The schedule sounds like a great line up of speakers.
If you&#8217;re here, come say hello!  I&#8217;m in the 3rd row, 1st on the left facing the stage.  I&#8217;m the Asian in the white blazer and brown shirt.


No related posts.
Related posts [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m here at FlexCampOC at the Boeing Conference Center in Huntington Beach.  The schedule sounds like a great line up of speakers.</p>
<p>If you&#8217;re here, come say hello!  I&#8217;m in the 3rd row, 1st on the left facing the stage.  I&#8217;m the Asian in the white blazer and brown shirt.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/01/31/im-at-flexcampoc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex Camp OC</title>
		<link>http://meetandrew.com/2009/01/08/flex-camp-oc/</link>
		<comments>http://meetandrew.com/2009/01/08/flex-camp-oc/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 00:38:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[camp]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flexcampoc]]></category>

		<guid isPermaLink="false">http://www.meetandrew.com/?p=29</guid>
		<description><![CDATA[What do you get when you combine 150 Flex and ActionScript wizkids at Boeing?  Flex Camp OC, that&#8217;s what.  There&#8217;ll be plenty of cool talks, food, prizes, and a party later on in Surf City.  Register and introduce yourself.  I&#8217;ll see you guys on January 31st.
Learn more about the conference [via [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>What do you get when you combine 150 Flex and ActionScript wizkids at Boeing?  <a href="http://www.flexcampoc.com/" target="_blank">Flex Camp OC</a>, that&#8217;s what.  There&#8217;ll be plenty of cool talks, food, prizes, and a party later on in Surf City.  Register and introduce yourself.  I&#8217;ll see you guys on January 31st.</p>
<p><a href="http://www.flexcampoc.com/" target="_blank">Learn more about the conference</a> [via <a href="http://SDFUG.org" target="_blank">SDFUG.org</a>]</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/01/08/flex-camp-oc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google’s Vision of Flash Content Gets a Little Clearer</title>
		<link>http://meetandrew.com/2009/01/05/google%e2%80%99s-vision-of-flash-content-gets-a-little-clearer/</link>
		<comments>http://meetandrew.com/2009/01/05/google%e2%80%99s-vision-of-flash-content-gets-a-little-clearer/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 23:03:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[flash player]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[jim corbett]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.meetandrew.com/?p=24</guid>
		<description><![CDATA[FlashSpeaksActionscript just posted Jim Corbett&#8217;s presentation on SWF searchability.  This is great for flash developers and designers who worry about SEO.
Check out the presentation here. [via FlashSpeaksActionScript]


Related posts:Flash Builder 4 beta is here! Adobe released Flash Builder (formerly Flex Builder) 4 beta today....
Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://meetandrew.com/2009/05/31/flash-builder-4-beta-is-here/' rel='bookmark' title='Permanent Link: Flash Builder 4 beta is here!'>Flash Builder 4 beta is here!</a> <small>Adobe released Flash Builder (formerly Flex Builder) 4 beta today....</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>FlashSpeaksActionscript just posted Jim Corbett&#8217;s presentation on SWF searchability.  This is great for flash developers and designers who worry about SEO.</p>
<p><a href="http://flashspeaksactionscript.com/googles-vision-of-flash-content/" target="_blank">Check out the presentation here</a>. [via <a href="http://flashspeaksactionscript.com/" target="_blank">FlashSpeaksActionScript</a>]</p>


<p>Related posts:<ol><li><a href='http://meetandrew.com/2009/05/31/flash-builder-4-beta-is-here/' rel='bookmark' title='Permanent Link: Flash Builder 4 beta is here!'>Flash Builder 4 beta is here!</a> <small>Adobe released Flash Builder (formerly Flex Builder) 4 beta today....</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2009/01/05/google%e2%80%99s-vision-of-flash-content-gets-a-little-clearer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Releases Air 1.5 for Linux</title>
		<link>http://meetandrew.com/2008/12/18/adobe-releases-air-15-for-linux/</link>
		<comments>http://meetandrew.com/2008/12/18/adobe-releases-air-15-for-linux/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 18:51:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.meetandrew.com/?p=21</guid>
		<description><![CDATA[Adobe has released AIR 1.5 for Linux!  I&#8217;m not a desktop Linux user myself (I only use it for my web server) but I do approve of reaching a bigger audience.  What&#8217;s great about AIR is that it allows web/AJAX/Flash developers to build desktop applications without the use of the &#8220;classical&#8221; programming languages such as [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Adobe has released <a href="http://blogs.adobe.com/air/2008/12/adobe_air_15_now_available_for.html" target="_blank">AIR 1.5</a> for Linux!  I&#8217;m not a desktop Linux user myself (I only use it for my web server) but I do approve of reaching a bigger audience.  What&#8217;s great about <a href="http://www.adobe.com/products/air/" target="_blank">AIR</a> is that it allows web/AJAX/Flash developers to build desktop applications without the use of the &#8220;classical&#8221; programming languages such as C/C++.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2008/12/18/adobe-releases-air-15-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe announces Stratus</title>
		<link>http://meetandrew.com/2008/12/12/adobe-announces-stratus/</link>
		<comments>http://meetandrew.com/2008/12/12/adobe-announces-stratus/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 17:58:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash player 10]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[peer to peer]]></category>
		<category><![CDATA[stratus]]></category>

		<guid isPermaLink="false">http://www.meetandrew.com/?p=18</guid>
		<description><![CDATA[With the release of Flash Player 10, Adobe has allowed for peer to peer connections.  But to get the clients to be aware of each other, you needed a middleman to handshake the peers such as an updated version of the Flash Media Server.  Now Adobe Stratus is a new beta service that will act [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>With the release of Flash Player 10, Adobe has allowed for peer to peer connections.  But to get the clients to be aware of each other, you needed a middleman to handshake the peers such as an updated version of the Flash Media Server.  Now Adobe Stratus is a new beta service that will act as the middleman and connect the peers.  Once the connection has been established, it&#8217;s all peer to peer traffic.</p>
<p>Imagine peer to peer games, video chat without a intermediate server, etc.  I hope to get a demo app out once I learn a little bit about it more.</p>
<p><a href="http://labs.adobe.com/technologies/stratus/" target="_blank">Read more about Stratus</a> [via <a href="http://drawlogic.com/2008/12/12/adobe-stratus-client-to-client-flash-communication-p2p-with-rtmfp/" target="_blank">drawlogic.com</a>]</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2008/12/12/adobe-announces-stratus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CASA Lib updated to AS3</title>
		<link>http://meetandrew.com/2008/12/10/casa-lib-updated-to-as3/</link>
		<comments>http://meetandrew.com/2008/12/10/casa-lib-updated-to-as3/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 05:34:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[casalib]]></category>
		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://www.meetandrew.com/?p=14</guid>
		<description><![CDATA[If you guys code as much as I do, I&#8217;m sure you&#8217;ve found yourself using code over again and again.  CASA Lib is a set of classes and utilities to get you coding faster.  Need to find and average value in an array?  No problem.  Need to remove all event listeners and do other cleanup [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you guys code as much as I do, I&#8217;m sure you&#8217;ve found yourself using code over again and again.  <a href="http://casalib.org/" target="_blank">CASA Lib</a> is a set of classes and utilities to get you coding faster.  Need to find and average value in an array?  No problem.  Need to remove all event listeners and do other cleanup when you remove a sprite from the stage?  That&#8217;s there too.  <a href="http://casalib.org/" target="_blank">Check it out here</a> or <a href="http://as3.casalib.org/releases/latest.zip" target="_blank">download here</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://meetandrew.com/2008/12/10/casa-lib-updated-to-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
