<?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>mentalaxis &#187; FDT</title>
	<atom:link href="http://mentalaxis.com/words/tag/fdt/feed/" rel="self" type="application/rss+xml" />
	<link>http://mentalaxis.com/words</link>
	<description>in the kingdom of the blind... stay off the highway!</description>
	<lastBuildDate>Fri, 14 Aug 2009 11:00:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AS3 Singleton &#8211; FDT Template</title>
		<link>http://mentalaxis.com/words/2008/08/12/as3-singleton-fdt-template/</link>
		<comments>http://mentalaxis.com/words/2008/08/12/as3-singleton-fdt-template/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 03:04:36 +0000</pubDate>
		<dc:creator>Jason Milkins</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ActionScript3.0]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[automationrawks]]></category>
		<category><![CDATA[codebynumbers]]></category>
		<category><![CDATA[FDT]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[patterns]]></category>
		<category><![CDATA[singleton]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://mentalaxis.com/words/?p=197</guid>
		<description><![CDATA[Ok, here we go again, AS3 and Singletons have been discussed almost as much as Peak Oil, but never-the-less, allow me to present yet another Singleton implementation, wrapped up in a neat little FDT template.




package ${enclosing_package} {
	
	/**
	 * @author ${user}
	 */
	public class ${enclosing_type} {
		
		private static var _instance : ${enclosing_type};
		private static function hidden() : void {}

		public [...]]]></description>
		<wfw:commentRss>http://mentalaxis.com/words/2008/08/12/as3-singleton-fdt-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT Template for Getter / Setter methods.</title>
		<link>http://mentalaxis.com/words/2008/07/30/fdt-template-for-getter-setter-methods/</link>
		<comments>http://mentalaxis.com/words/2008/07/30/fdt-template-for-getter-setter-methods/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 00:56:48 +0000</pubDate>
		<dc:creator>Jason Milkins</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[accessor]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[bestpractices]]></category>
		<category><![CDATA[class member]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[FDT]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[gettersetter]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[mutator]]></category>
		<category><![CDATA[objectoriented]]></category>
		<category><![CDATA[public class member]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://mentalaxis.com/words/?p=190</guid>
		<description><![CDATA[If you&#8217;re being a good Flex / AS3 dev, you are probably wrapping your class member properties with public getter and setter methods.

If you&#8217;re not, you really, really should&#8230; 

Getters and Setters, otherwise known as accessor methods, or mutator methods (among other things), are very helpful. They allow you to make your public properties have [...]]]></description>
		<wfw:commentRss>http://mentalaxis.com/words/2008/07/30/fdt-template-for-getter-setter-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT 3 Out of memory error</title>
		<link>http://mentalaxis.com/words/2008/03/03/fdt-3-out-of-memory-error/</link>
		<comments>http://mentalaxis.com/words/2008/03/03/fdt-3-out-of-memory-error/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 11:48:57 +0000</pubDate>
		<dc:creator>Jason Milkins</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[ActionScript2.0]]></category>
		<category><![CDATA[ActionScript3.0]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[FDT]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://mentalaxis.com/words/?p=179</guid>
		<description><![CDATA[When you first get started with FDT3 from PowerFlasher http://fdt.powerflasher.com / http://fdt.powerflasher.de you will probably get the message&#8230;
Not enough memory to run FDT &#8211; add the following line to your eclipse.ini
-Xmx512m
On a windows machine the eclipse.ini is easy to find, and should be in the same folder as eclipse.exe, editing the file in notepad and [...]]]></description>
		<wfw:commentRss>http://mentalaxis.com/words/2008/03/03/fdt-3-out-of-memory-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT 1.5 Released</title>
		<link>http://mentalaxis.com/words/2006/10/31/fdt-15-released/</link>
		<comments>http://mentalaxis.com/words/2006/10/31/fdt-15-released/#comments</comments>
		<pubDate>Tue, 31 Oct 2006 13:43:44 +0000</pubDate>
		<dc:creator>Jason Milkins</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[ActionScript2.0]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[FDT]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://mentalaxis.com/words/2006/10/31/fdt-15-released/</guid>
		<description><![CDATA[
Powerflasher FDT 1.5.1 for Eclipse 3.2 is now available...


From the Powerflasher site: 
Thanks to everybody for the patience. The new Powerflasher FDT 1.5 version is available from now on. It is a free minor update for all FDT fans. We hope the development time for version 2.0 with AS3 support feels short with it. 


New [...]]]></description>
		<wfw:commentRss>http://mentalaxis.com/words/2006/10/31/fdt-15-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
