<?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>Razorberry's Adobe Flash Blog &#187; Actionscript</title>
	<atom:link href="http://www.razorberry.com/blog/archives/category/actionscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.razorberry.com/blog</link>
	<description>since 2004!</description>
	<lastBuildDate>Wed, 10 Mar 2010 19:40:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Creating a Flex-free MXML app with Razor</title>
		<link>http://www.razorberry.com/blog/archives/2009/12/23/creating-a-flex-free-mxml-app-with-razor/</link>
		<comments>http://www.razorberry.com/blog/archives/2009/12/23/creating-a-flex-free-mxml-app-with-razor/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:53:43 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/?p=89</guid>
		<description><![CDATA[As it turns out, it was fairly simple to add support to the base Razor component classes to enable them for use inside mxml. You can use the razor.controls.Application class as the base tag for your mxml, change the default namespace, and instantiate any of the razor components with regular mxml tags. The resulting swf [...]]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2009/12/23/creating-a-flex-free-mxml-app-with-razor/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Razor components now on github, new license.</title>
		<link>http://www.razorberry.com/blog/archives/2009/12/17/razor-components-now-on-github-new-license/</link>
		<comments>http://www.razorberry.com/blog/archives/2009/12/17/razor-components-now-on-github-new-license/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:23:41 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/?p=81</guid>
		<description><![CDATA[Its been a long time since the last update, but I recently uploaded the latest version of the Razor component framework to github, ditched the old wiki and set up a new home page. You can find more information, download the source and see a demo application here. I recently changed the license from GPL [...]]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2009/12/17/razor-components-now-on-github-new-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3: Removing duplicates from an array</title>
		<link>http://www.razorberry.com/blog/archives/2008/09/03/as3-removing-duplicates-from-an-array/</link>
		<comments>http://www.razorberry.com/blog/archives/2008/09/03/as3-removing-duplicates-from-an-array/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 03:22:17 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/?p=63</guid>
		<description><![CDATA[Just for shiggles (yes, I said it.), removing duplicate items from an array in one line of ActionScript 3: var arr:Array = ["a","b","b","c","b","d","c"]; var z:Array = arr.filter(function (a:*,b:int,c:Array):Boolean { return ((z ? z : z = new Array()).indexOf(a) >= 0 ? false : (z.push(a) >= 0)); }, this); trace(z);]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2008/09/03/as3-removing-duplicates-from-an-array/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Messing around with papervision again</title>
		<link>http://www.razorberry.com/blog/archives/2008/06/05/messing-around-with-papervision-again/</link>
		<comments>http://www.razorberry.com/blog/archives/2008/06/05/messing-around-with-papervision-again/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 21:53:32 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/?p=58</guid>
		<description><![CDATA[Nothing too spectacular, but I threw together a new pointless animation for my front page. See it here. One day I will have enough varied content to warrant a menu or something. Here is the source, for learning purposes. It won't compile without a couple of files, but you can get the idea]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2008/06/05/messing-around-with-papervision-again/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>AS3 Dynamic Speech Bubble Snippet</title>
		<link>http://www.razorberry.com/blog/archives/2008/01/28/as3-dynamic-speech-bubble-snippet/</link>
		<comments>http://www.razorberry.com/blog/archives/2008/01/28/as3-dynamic-speech-bubble-snippet/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 03:25:27 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/archives/2008/01/28/as3-dynamic-speech-bubble-snippet/</guid>
		<description><![CDATA[The static method drawSpeechBubble in the file below uses the drawing API to draw a rounded rectangle based speech bubble with a dynamic point. The side the point is on moves depending on the relative position to the bubble. It looks best if you set the point to be fairly close to the actual rectangle. [...]]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2008/01/28/as3-dynamic-speech-bubble-snippet/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Converting html entities in AS3</title>
		<link>http://www.razorberry.com/blog/archives/2007/11/02/converting-html-entities-in-as3/</link>
		<comments>http://www.razorberry.com/blog/archives/2007/11/02/converting-html-entities-in-as3/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 21:34:39 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/archives/2007/11/02/converting-html-entities-in-as3/</guid>
		<description><![CDATA[I'm posting this here mainly because I always have to look it up. But maybe this post will help someone down the road. Converting a string with html entities (such as &#38;amp;) to their respective symbols: AS: public function htmlUnescape&#40;str:String&#41;:String &#123; &#160; &#160; return new XMLDocument&#40;str&#41;.firstChild.nodeValue; &#125; Converting a string so that it has html [...]]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2007/11/02/converting-html-entities-in-as3/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>FP9 component pseudo-comparison</title>
		<link>http://www.razorberry.com/blog/archives/2007/07/27/component-comparison/</link>
		<comments>http://www.razorberry.com/blog/archives/2007/07/27/component-comparison/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 20:01:50 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/archives/2007/07/27/component-comparison/</guid>
		<description><![CDATA[I thought I'd compile a little comparison of my Razor components (80% done!) vs the flex framework and the Flash CS3 components. I included just the components shown, but this is slightly unfair to Flex since it includes way more features in the framework that aren't actually used here. Flash player 9 required for all [...]]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2007/07/27/component-comparison/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Slow progress</title>
		<link>http://www.razorberry.com/blog/archives/2007/05/30/slow-progress/</link>
		<comments>http://www.razorberry.com/blog/archives/2007/05/30/slow-progress/#comments</comments>
		<pubDate>Wed, 30 May 2007 18:01:44 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/archives/2007/05/30/slow-progress/</guid>
		<description><![CDATA[Last night I put some finishing touches to the Color Swatch/Color picker components for the Razor Component Set. It is mostly a rewrite of the old AS1 colour picker I made a few years ago. You can see the results below! On another note, I've decided that the whole component set (AS 2 and 3 [...]]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2007/05/30/slow-progress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Flash and Papervision3D abuse</title>
		<link>http://www.razorberry.com/blog/archives/2007/05/24/flash-and-papervision3d-abuse/</link>
		<comments>http://www.razorberry.com/blog/archives/2007/05/24/flash-and-papervision3d-abuse/#comments</comments>
		<pubDate>Thu, 24 May 2007 19:39:32 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/archives/2007/05/24/flash-and-papervision3d-abuse/</guid>
		<description><![CDATA[I have these incredible tools at my disposal, and I produce this... Flash 9 required. Enjoy!]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2007/05/24/flash-and-papervision3d-abuse/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>FlashDevelop 3 alpha</title>
		<link>http://www.razorberry.com/blog/archives/2007/05/22/flashdevelop-3-alpha/</link>
		<comments>http://www.razorberry.com/blog/archives/2007/05/22/flashdevelop-3-alpha/#comments</comments>
		<pubDate>Tue, 22 May 2007 14:11:33 +0000</pubDate>
		<dc:creator>Ash</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.razorberry.com/blog/archives/2007/05/22/flashdevelop-3-alpha/</guid>
		<description><![CDATA[I've been waiting for this one for a while: FlashDevelop 3.0.0 alpha was just released on the FlashDevelop forums. http://www.flashdevelop.org/community/viewtopic.php?t=1436]]></description>
		<wfw:commentRss>http://www.razorberry.com/blog/archives/2007/05/22/flashdevelop-3-alpha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
