<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Andrew Rost</title>
	<atom:link href="http://andrewrost.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewrost.wordpress.com</link>
	<description>AS3 and the Flash Platform</description>
	<lastBuildDate>Fri, 22 Jul 2011 11:38:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='andrewrost.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Andrew Rost</title>
		<link>http://andrewrost.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andrewrost.wordpress.com/osd.xml" title="Andrew Rost" />
	<atom:link rel='hub' href='http://andrewrost.wordpress.com/?pushpress=hub'/>
		<item>
		<title>AIR on Android: Handling the BACK and MENU Hardware Buttons</title>
		<link>http://andrewrost.wordpress.com/2011/03/24/froyo-air-2-5-%e2%80%93-capture-back-and-menu-button/</link>
		<comments>http://andrewrost.wordpress.com/2011/03/24/froyo-air-2-5-%e2%80%93-capture-back-and-menu-button/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 18:50:41 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AIR 2.5]]></category>
		<category><![CDATA[Froyo]]></category>

		<guid isPermaLink="false">http://andrewrost.wordpress.com/?p=28</guid>
		<description><![CDATA[Spent a lot of time trying to get this down. The key [no pun intended] in getting this to work is capturing the KEY_DOWN and KEY_UP events and calling preventDefault() and stopImmediatePropagation() on both Events. Code that needs to be executed in place of the default, should be placed in the KEY_UP event. This was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=28&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Spent a lot of time trying to get this down. The key [no pun intended] in getting this to work is capturing the KEY_DOWN and KEY_UP events and calling preventDefault() and stopImmediatePropagation() on both Events. Code that needs to be executed in place of the default, should be placed in the KEY_UP event.</p>
<p>This was tested on MT4G, Froyo, AIR 2.5.</p>
<pre>
stage.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown);
stage.addEventListener(KeyboardEvent.KEY_UP, handleKeyUp);

function handleKeyDown(event:KeyboardEvent):void
{
       switch(event.keyCode)
       {
              case Keyboard.BACK:
                     event.preventDefault();
                     event.stopImmediatePropagation();
                     break;
              case Keyboard.MENU:
                     event.preventDefault();
                     event.stopImmediatePropagation();
                     break;
              default:
                     break;
       }
}

function handleKeyUp(event:KeyboardEvent):void
{
       switch(event.keyCode)
       {
              case Keyboard.BACK:
                     event.preventDefault();
                     event.stopImmediatePropagation();
                     break;
              case Keyboard.MENU:
                     event.preventDefault();
                     event.stopImmediatePropagation();
                     break;
              default:
                     break;
       }
}</pre>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=28&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2011/03/24/froyo-air-2-5-%e2%80%93-capture-back-and-menu-button/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
		<item>
		<title>Multiple Browser Rendering Through Adobe BrowserLab</title>
		<link>http://andrewrost.wordpress.com/2010/02/11/multiple-browser-rendering-through-adobe-browserlab/</link>
		<comments>http://andrewrost.wordpress.com/2010/02/11/multiple-browser-rendering-through-adobe-browserlab/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:39:34 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[Adobe Innovation]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://andrewrost.wordpress.com/?p=20</guid>
		<description><![CDATA[I just tested the new Adobe BrowserLab software, very cool. You can learn more and try it out at the link below. http://labs.adobe.com/technologies/browserlab/ The software opens in your current browser and allows you to view a website in a slew of different browsers. The sites ARE NOT function, simply a rendering of the page for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=20&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">I just tested the new Adobe BrowserLab software, very cool. You can learn more and try it out at the link below.</p>
<p style="text-align:left;"><a href="http://labs.adobe.com/technologies/browserlab/">http://labs.adobe.com/technologies/browserlab/</a></p>
<p style="text-align:left;">The software opens in your current browser and allows you to view a website in a slew of different browsers. The sites ARE NOT function, simply a rendering of the page for cross-browser compatability.There are some really nice features like page tiling and a vast selection of cross-platform browsers. You will need to have an Adobe user account to try it out (it&#8217;s only in a trial right now), but if you don&#8217;t have an account, you should anyway!</p>
<p style="text-align:left;">Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=20&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2010/02/11/multiple-browser-rendering-through-adobe-browserlab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
		<item>
		<title>Zinio Digital Magazines</title>
		<link>http://andrewrost.wordpress.com/2009/12/11/zinio-digital-magazines/</link>
		<comments>http://andrewrost.wordpress.com/2009/12/11/zinio-digital-magazines/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 14:31:18 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://andrewrost.wordpress.com/2009/12/11/zinio-digital-magazines/</guid>
		<description><![CDATA[I just started a magazine subscription with Zinio Digital Magazines &#38; Books. www.zinio.com They were offering a 90 day free subscription to Layers Magazine. www.layersmagazine.com The magazine coins &#8220;The How-to magazine for Everything Adobe&#8221;. So far the zine is really good and has a lot of tips, tricks and new feature spots. Check it out!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=19&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just started a magazine subscription with Zinio Digital Magazines &amp; Books. www.zinio.com</p>
<p>They were offering a 90 day free subscription to Layers Magazine. www.layersmagazine.com The magazine coins &#8220;The How-to magazine for Everything Adobe&#8221;. So far the zine is really good and has a lot of tips, tricks and new feature spots.</p>
<p>Check it out!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=19&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2009/12/11/zinio-digital-magazines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
		<item>
		<title>AS3 Document Class Example</title>
		<link>http://andrewrost.wordpress.com/2009/10/29/as3-document-class-example/</link>
		<comments>http://andrewrost.wordpress.com/2009/10/29/as3-document-class-example/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 01:01:42 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>

		<guid isPermaLink="false">http://andrewrost.wordpress.com/?p=11</guid>
		<description><![CDATA[In this Document Class example I introduce several aspects; class coding, packages and some of my development styles. (styles vary from developer to developer) I&#8217;ve created these styles for efficient code passing between developers and the styles can also be applied to; Java, Javascript, .NET and AJAX development. Alright, let’s get started. (You can get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=11&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this Document Class example I introduce several aspects; class coding, packages and some of my development styles. (styles vary from developer to developer) I&#8217;ve created these styles for efficient code passing between developers and the styles can also be applied to; Java, Javascript, .NET and AJAX development.</p>
<p>Alright, let’s get started. (<a href="https://www.idexxlearningcenter.com/idexx/resources/demo/DocumentClass.zip">You can get the source files here</a>…)</p>
<p>We’ll start by creating a folder in your favorite location. Open this folder and create another folder named “com”. Putting classes in a com folder is pretty standard across Flash developers and will be to your benefit to start using.</p>
<p>Now open Flash and create a blank AS3 document. Name the file DocumentClassExample.fla and save the file to the folder you created in the previous step.</p>
<p>Now create a blank AS3 Actionscript file titled DocumentClassExample.as and save it to your com folder.</p>
<p>Now for the fun part!</p>
<p>In your AS file you’ll need to define the package, class and initiator. The package is what usually trips people up when they start working with AS3. The package can be blank if you have it in the root directory of your FLA, but since we put it into the com folder, we need to define the com package.</p>
<pre>package com
{
}</pre>
<p>Now that we have the package defined, we need to add the class definition. The class needs to be titled the same as the AS file, DocumentClassExample.as.</p>
<pre>package com
{
     public class DocumentClassExample
     {
     }
}</pre>
<p>Now this would be fine for a “normal” class file, but the Document class file has to extend MovieClip. The main stage area in AS3 is a MovieClip DisplayObject, so the Document class needs to extend MovieClip. (remember in AS3 you need to import all of your classes!)</p>
<pre>package com
{
     import flash.display.MovieClip;

     public class DocumentClassExample extends MovieClip
     {
     }
}</pre>
<p>Now for the class initiator… The initiator is a function in the class named the exact same as the class. Hopefully you’ve noticed a pattern here; the as file, class and initiator function all need to be named EXACTLY the same. (case sensitive)</p>
<pre>package com
{
     public class DocumentClassExample extends MovieClip
     {
          Public function DocumentClassExample() {};
     }
}</pre>
<p>So we can make sure this class is working when we publish, let’s add a variable that will trace when the FLA is compiled.</p>
<pre>package com
{
     import flash.display.MovieClip;

     public class DocumentClassExample extends MovieClip
     {
          private static var traceText:String = "Hello World";

          function DocumentClassExample() {};
     }
}</pre>
<p>To call the trace method we’ll add a secondary initiator to the class. This is a pretty typical process for development. We’ll place the trace statement within the init() function.</p>
<pre>package com
{
     import flash.display.MovieClip;

     public class DocumentClassExample extends MovieClip
     {
          private static var traceText:String = "Hello World";

          function DocumentClassExample() { init() };

          private function init():void { trace(String(traceText)) };
     }
}</pre>
<p>We’re almost done, one last thing to do… define the Document class in the FLA. Jump back to your FLA and click on the stage. Open the Properties panel and in the Document class: field enter your newly created Document class. Just like in the AS file we need to make sure we enter the package first [com] and then the class name [DocumentClassExample].</p>
<pre>com.DocumentClassExample</pre>
<p>Now ctrl+Enter and publish the FLA. You should see “Hello World” trace into the output panel!</p>
<p>You can download the source for this project from the link below. I’ve commented just about all of the code, so happy coding and make sure to let me know what you think and some future topics you’d like covered.</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=11&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2009/10/29/as3-document-class-example/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
		<item>
		<title>The Kickoff</title>
		<link>http://andrewrost.wordpress.com/2009/10/19/the-kickoff/</link>
		<comments>http://andrewrost.wordpress.com/2009/10/19/the-kickoff/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 17:30:04 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>

		<guid isPermaLink="false">http://andrewrost.wordpress.com/?p=8</guid>
		<description><![CDATA[So, to kick this blog off I&#8217;ve decided to create 3 little AS3 sample projects. Each project builds upon the previous, but feel free to jump into the 3rd project if you have class scripting knowledge (AS2 or 3) or some basic AS3 knowledge. All of the files are AS3 and are built in CS3, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=8&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, to kick this blog off I&#8217;ve decided to create 3 little AS3 sample projects. Each project builds upon the previous, but feel free to jump into the 3rd project if you have class scripting knowledge (AS2 or 3) or some basic AS3 knowledge. All of the files are AS3 and are built in CS3, so hopefully everyone can access them. But, the process is identical for CS4.</p>
<p>First three example projects:</p>
<ul>
<li>Document class</li>
<li>Graphics class, and</li>
<li>Programmatically working with stage dimensions</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=8&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2009/10/19/the-kickoff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
		<item>
		<title>AS3 Code Examples Coming Soon</title>
		<link>http://andrewrost.wordpress.com/2009/10/16/as3-code-examples-coming-soon/</link>
		<comments>http://andrewrost.wordpress.com/2009/10/16/as3-code-examples-coming-soon/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 15:52:08 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://andrewrost.wordpress.com/2009/10/16/as3-code-examples-coming-soon/</guid>
		<description><![CDATA[Finally got several documented AS3 projects put together. I&#8217;ll be posting each one separately including the source files and code. (Everything will be in CS3)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=6&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally got several documented AS3 projects put together. I&#8217;ll be posting each one separately including the source files and code. (Everything will be in CS3)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=6&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2009/10/16/as3-code-examples-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
		<item>
		<title>Finally Getting Started</title>
		<link>http://andrewrost.wordpress.com/2009/10/01/hello-world/</link>
		<comments>http://andrewrost.wordpress.com/2009/10/01/hello-world/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:16:51 +0000</pubDate>
		<dc:creator>andrewrost</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;ve been talking about a public facing web and it&#8217;s finally here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=1&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been talking about a public facing web and it&#8217;s finally here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewrost.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewrost.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewrost.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewrost.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewrost.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewrost.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewrost.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewrost.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewrost.wordpress.com&amp;blog=9737602&amp;post=1&amp;subd=andrewrost&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewrost.wordpress.com/2009/10/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/97b7ee853fd54dde0d7869c138cfe999?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewrost</media:title>
		</media:content>
	</item>
	</channel>
</rss>
