<?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>SimplicIT . Simple IT Solutions . LAB</title>
	<atom:link href="http://lab.simplicit.co.za/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://lab.simplicit.co.za</link>
	<description></description>
	<lastBuildDate>Sat, 07 Aug 2010 09:42:36 +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>Simple Introduction: Flash Builder &amp; Flex 4</title>
		<link>http://lab.simplicit.co.za/?p=220</link>
		<comments>http://lab.simplicit.co.za/?p=220#comments</comments>
		<pubDate>Sat, 07 Aug 2010 09:41:10 +0000</pubDate>
		<dc:creator>trace</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=220</guid>
		<description><![CDATA[As a first step I want to get something to run and have a basic idea of the environment I&#8217;ll be working in. Here&#8217;s a quick summary of the steps I followed: Create a new project and inspect the resulting project / package / class files Play around with the new versus old Flex components [...]]]></description>
			<content:encoded><![CDATA[<p>As a first step I want to get something to run and have a basic idea of the environment I&#8217;ll be working in.</p>
<p>Here&#8217;s a quick summary of the steps I followed:</p>
<ol>
<li>Create a new project and inspect the resulting project / package / class files</li>
<li>Play around with the new versus old Flex components</li>
<li>Try different skin templates</li>
</ol>
<p><strong>Create a new project</strong></p>
<ol>
<li>Open FlashBuilder and create a new Flex project (File &gt; New &gt; Flex Project)</li>
<li>In the configuration popup give your project a name and change and change the default settings if you wish</li>
</ol>
<p><a href="http://lab.simplicit.co.za/wp-content/uploads/2010/07/1_create_project.jpg"><img class="alignnone size-full wp-image-224" src="http://lab.simplicit.co.za/wp-content/uploads/2010/07/1_create_project.jpg" alt="Create a new Flex project" width="400" height="419" /></a></p>
<p>In the package explorer panel have a look at the project tree, the main folders / files you are interested in is</p>
<ul>
<li> src &#8211; contains the source / class files</li>
<li>bin &#8211; contains the compiled .swf file + a generated .html file that displays your swf</li>
</ul>
<p><a href="http://lab.simplicit.co.za/wp-content/uploads/2010/07/2_package_files.jpg"><img class="size-full wp-image-228" src="http://lab.simplicit.co.za/wp-content/uploads/2010/07/2_package_files.jpg" alt="Package files and structure" width="383" height="448" /></a></p>
<p><strong>Play around with the new versus old Flex components</strong></p>
<p>First, lets start with layout components. In the new Spark component set, layout logic has been decoupled from the component. One can set the layout of a component declaratively in the mxml (as a property) and can change it at runtime. Layout containers in Spark deal solely with layout and are therefore more lightweight. This does mean that one cannot set  visual drawing properties such as background. They do support layout-specific properties such as padding.</p>
<div>Spark contains 4 predefined layout classes: BasicLayout, HorizontalLayout, VerticalLayout, TileLayout</div>
<div>Here are the basic layout containers for Flex 3 with their Spark equivallent:</div>
<div>
<ul>
<li>Canvas vs. Group: Group is a simple wrapper that implements BasicLayout, which is absolute positioning and supports padding</li>
<li>HBox &amp; VBox vs. HGroup &amp; VGroup: HGroup &amp; VGroup are extended from Group and use the HorizontalLayout &amp; VerticalLayout</li>
</ul>
</div>
<div>Now in our project, let&#8217;s start by setting the layout of the Application (note, a Spark Application: &#8216;&lt;s:Application&#8217; ) as a vertical layout</div>
<div><a href="http://lab.simplicit.co.za/wp-content/uploads/2010/08/3_application_layout.jpg"><img class="alignnone size-full wp-image-240" src="http://lab.simplicit.co.za/wp-content/uploads/2010/08/3_application_layout.jpg" alt="Vertical layout for the spark application" width="231" height="202" /></a></div>
<div>Now let&#8217;s create 2 buttons, an mx Button and a Spark button and run our application:</div>
<div><a href="http://lab.simplicit.co.za/wp-content/uploads/2010/08/4_buttons.jpg"><img class="alignnone size-full wp-image-241" src="http://lab.simplicit.co.za/wp-content/uploads/2010/08/4_buttons.jpg" alt="Flex 3 and spark buttons" width="412" height="175" /></a></div>
<div></div>
<div></div>
<div><strong>Try different skin templates</strong></div>
<div><strong><br />
</strong></div>
<div>Next lets change the theme, from the default Spark to the previous Flex 3 theme, Halo (Do this by switching to Design view, then clicking &#8216;Spark&#8217; to open the Theme popup, from which you can select the Halo theme:</div>
<div><a href="http://lab.simplicit.co.za/wp-content/uploads/2010/08/5_select_theme.jpg"><img class="alignnone size-full wp-image-242" src="http://lab.simplicit.co.za/wp-content/uploads/2010/08/5_select_theme.jpg" alt="Change the application theme" width="971" height="379" /></a></div>
<div>We don&#8217;t need to run our app to see the changes since they&#8217;re visible in the design view:</div>
<div><a href="http://lab.simplicit.co.za/wp-content/uploads/2010/08/6_buttons_theme.jpg"><img class="alignnone size-full wp-image-243" src="http://lab.simplicit.co.za/wp-content/uploads/2010/08/6_buttons_theme.jpg" alt="Flex 3 vs spark buttons are affected by the theme" width="144" height="115" /></a></div>
<div>This shows that Spark has a different skin set to Halo. Previously in Flex 3 skinning one can define a custom button style by setting the styleName property of the &lt;mx:Button and ensuring that the style implements the skins that the mx:Button supports. This is no longer directly possible with a Spark button. If you see the style properties of the Spark Button in the API you will see it supports very little:</div>
<div><a title="API - Spark Button" href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/Button.html?allClasses=1#sparkstyleSummary" target="_blank">http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/Button.html?allClasses=1#sparkstyleSummary</a></div>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=220</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Flex4</title>
		<link>http://lab.simplicit.co.za/?p=210</link>
		<comments>http://lab.simplicit.co.za/?p=210#comments</comments>
		<pubDate>Thu, 22 Jul 2010 20:16:42 +0000</pubDate>
		<dc:creator>trace</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=210</guid>
		<description><![CDATA[I am teaching myself Flex 4 and will be documenting a series of examples as I go through the process. If you have not yet heard of Adobe Flex, here is a quick overview: Flex is a collection of class libraries released by Adobe for the purpose of building rich internet applications These classes are [...]]]></description>
			<content:encoded><![CDATA[<p>I am teaching myself Flex 4 and will be documenting a series of examples as I go through the process. If you have not yet heard of Adobe Flex, here is a quick overview:</p>
<ul>
<li>Flex is a collection of class libraries released by Adobe for the purpose of building rich internet applications</li>
<li>These classes are built ontop of the existing core Flash classes, such as Event and Sprite and are referred to as the Flex SDK [1]</li>
<li>Flex can also be used to build desktop applications through the use of  Adobe AIR [2]</li>
<li>Adobe&#8217;s proprietary program for creating Flex applications is Flash Builder, although there are other free open source alternatives</li>
</ul>
<p>[1] Flex SDK (Software development kit): software framework that extends the existing Flash classes and runs in the Flash Player<br />
[2] Adobe Integrated Runtime (AIR) is a cross-platform runtime environment for desktop applications</p>
<p>Flex started gaining popularity around 2005/2006 with the Flex 1.5 SDK. The new Flex 4 SDK was released in March 2010 along with Flash Builder (previously called FlexBuilder).</p>
<p>In my examples I will be looking at a brief  introduction into the new Flash Builder IDE [3] and Flex 4 classes. Next I&#8217;ll look at migrating an application from Flex 3 to Flex 4.</p>
<p>[3] Integrated development environment (IDE): a program / environment consisting of a collection of tools that assist with coding and developing applications</p>
<p>To follow these examples I would recommend that you install a version of FlashBuilder. The full trial is valid for 60 days:<br />
<a title="Flash Builder trial, full version valid for 60 days" href="http://www.adobe.com/cfusion/tdrc/index.cfm?product=flash_builder" target="_blank">http://www.adobe.com/cfusion/tdrc/index.cfm?product=flash_builder</a></p>
<p>A free alternative for a Flex development environment is to use Eclipse with the Flex plugin:<br />
<a title="Use Eclipse with the free Flex plugin" href="http://www.seanhsmith.com/2010/03/29/flex-for-free-setting-up-the-flex-4-sdk-with-eclipse-ide/" target="_blank">http://www.seanhsmith.com/2010/03/29/flex-for-free-setting-up-the-flex-4-sdk-with-eclipse-ide/</a></p>
<p>Another alternative is to use your favourite code editor and compile Flex with the command line compiler:<br />
<a title="Creating Flex apps with a code editor and the command line compiler" href="http://flanture.blogspot.com/2010/04/running-flex-4-sdk-and-flashdevelop.html" target="_blank">http://flanture.blogspot.com/2010/04/running-flex-4-sdk-and-flashdevelop.html</a><br />
<a title="Creating Flex apps with a code editor and the command line compiler" href="http://www.steamed-design.com/2009/07/free-flex-ide.html" target="_blank">http://www.steamed-design.com/2009/07/free-flex-ide.html</a></p>
<p>Here is a comparison between FlashDevelop and FlexBuilder. Note that it compares FlexBuilder, the predecessor of the new FlashBuilder, which has a great improvement in performance:<br />
<a title="A comparison between FlashDevelop and FlexBuilder" href="http://cameronellis.posterous.com/flex-4-vs-flashdevelop-3" target="_blank">http://cameronellis.posterous.com/flex-4-vs-flashdevelop-3</a></p>
<p>FlashBuilder is free for students and eligible educational institutions:<br />
<a title="Flash Builder is free for students and educational institutions" href="http://www.adobe.com/devnet/flex/free/index.html" target="_blank">http://www.adobe.com/devnet/flex/free/index.html</a></p>
<p>To wet your appetite, here are some examples of what can be done with Flex:<br />
<a title="Flex showcase" href="http://flex.org/showcase" target="_blank">http://flex.org/showcase</a><br />
<a title="Flex tour" href="http://flex.org/tour" target="_blank">http://flex.org/tour</a><br />
<a title="Flex showcase" href="http://bkflex.wordpress.com/showcase/" target="_blank">http://bkflex.wordpress.com/showcase/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=210</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Announcements</title>
		<link>http://lab.simplicit.co.za/?p=175</link>
		<comments>http://lab.simplicit.co.za/?p=175#comments</comments>
		<pubDate>Sat, 08 May 2010 09:10:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=175</guid>
		<description><![CDATA[Broken ZIP File Issues Some of the zip files you have downloaded are either corrupt or broken. I am in the process of replacing files with working ones. If you need a file, please contact me and I will send it to you. Alternatively, try the download again. Internet Explorer v8 Compatibility Issue If you [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #008eff;"><strong>Broken ZIP File Issues</strong></span><br />
Some of the zip files you have downloaded are either corrupt or broken. I am in the process of replacing files with working ones. If you need a file, please <a title="Contact the Author" href="mailto:lab@simplicit.co.za?subject=LAB File Required">contact me</a> and I will send it to you. Alternatively, try the download again.</p>
<p><span style="color: #008eff;"><strong>Internet Explorer v8 Compatibility Issue</strong></span><br />
If you are running Internet Explorer v8, please use Compatibility View to view this site.</p>
<p><span style="color: #008eff;"><strong>New Author</strong></span><br />
I would like to welcome &#8220;trace&#8221; who has taken on the role of co-author. I wish you many inspirational posts!</p>
<p><span style="color: #008eff;"><strong>Please report broken links</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=175</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 Dynamic Object Alignment</title>
		<link>http://lab.simplicit.co.za/?p=160</link>
		<comments>http://lab.simplicit.co.za/?p=160#comments</comments>
		<pubDate>Sun, 07 Jun 2009 20:30:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=160</guid>
		<description><![CDATA[If you are running your SWF file at 100% of the browser window&#8217;s size, you can use this example to dynamically position objects on the stage based on the window size i.e. when the browser is resized, all objects will dynamically move to their allocated positions relative to the window size. (This file will open [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running your SWF file at 100% of the browser window&#8217;s size, you can use this example to dynamically position objects on the stage based on the window size i.e. when the browser is resized, all objects will dynamically move to their allocated positions relative to the window size.</p>
<p>(This file will open in Flash CS3) (<a title="Preview File" href="http://lab.simplicit.co.za/previews/as3dynamicpositioning/preview.html" target="_blank">Preview File</a>)<br />
<a href="http://lab.simplicit.co.za/wp-content/uploads/2009/06/as3_dynamic_positioning.zip">Get Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=160</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Out of action for a bit</title>
		<link>http://lab.simplicit.co.za/?p=158</link>
		<comments>http://lab.simplicit.co.za/?p=158#comments</comments>
		<pubDate>Mon, 04 May 2009 06:05:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=158</guid>
		<description><![CDATA[I recently started a new job, which I have been dedicating all of my time to. I will resume posting soon. Please be patient. there is more to come.]]></description>
			<content:encoded><![CDATA[<p>I recently started a new job, which I have been dedicating all of my time to. I will resume posting soon.</p>
<p>Please be patient. there is more to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=158</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 XML Random Banner Rotator</title>
		<link>http://lab.simplicit.co.za/?p=149</link>
		<comments>http://lab.simplicit.co.za/?p=149#comments</comments>
		<pubDate>Tue, 17 Feb 2009 09:22:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=149</guid>
		<description><![CDATA[Here is a useful banner ad rotator. It loads a random image or swf file via XML everytime the page loads or is refreshed. I have included error handlers for the XML file and banners. (This file will open in Flash CS3) (Preview File) Get Source]]></description>
			<content:encoded><![CDATA[<p>Here is a useful banner ad rotator. It loads a random image or swf file via XML everytime the page loads or is refreshed.</p>
<p>I have included error handlers for the XML file and banners.</p>
<p>(This file will open in Flash CS3)   (<a title="Preview File" href="http://lab.simplicit.co.za/previews/as3xmlrandombannerrotator/preview.html" target="_blank">Preview File</a>)<br />
<a href="http://lab.simplicit.co.za/wp-content/uploads/2009/02/as3_xml_random_banner_rotator.zip">Get Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=149</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>AS3 XML Scrollbar Class with CSS</title>
		<link>http://lab.simplicit.co.za/?p=145</link>
		<comments>http://lab.simplicit.co.za/?p=145#comments</comments>
		<pubDate>Wed, 04 Feb 2009 21:09:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=145</guid>
		<description><![CDATA[I was asked if it is possible to apply external CSS properties to the XML instead of applying the formatting within the XML document itself. Flash offers limited support for CSS properties, but I have used as much as I can. I have also embedded multiple styles of the font, so you are able to [...]]]></description>
			<content:encoded><![CDATA[<p>I was asked if it is possible to apply external CSS properties to the XML instead of applying the formatting within the XML document itself.</p>
<p>Flash offers limited support for CSS properties, but I have used as much as I can.</p>
<p>I have also embedded multiple styles of the font, so you are able to apply normal, bold and italic styles to the text field via the stylesheet.</p>
<p>If you want to add error handlers for the XML and CSS files, please have a look at my XML News Ticker code.</p>
<p>(This file will open in Flash CS3)<br />
<a href="http://lab.simplicit.co.za/wp-content/uploads/2009/02/as3_xmlscrollbarclass_css.zip">Get Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=145</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>AS3 Simple Picture Slideshow</title>
		<link>http://lab.simplicit.co.za/?p=135</link>
		<comments>http://lab.simplicit.co.za/?p=135#comments</comments>
		<pubDate>Tue, 03 Feb 2009 10:35:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=135</guid>
		<description><![CDATA[I was thinking about the simplicity of swapDepths() in ActionScript 2.0 and thought that you might be curious as to how one swaps the depths of objects on the stage in ActionScript 3.0. I have created a practical example which swaps the depths of images on the stage at regular intervals to create a slideshow. [...]]]></description>
			<content:encoded><![CDATA[<p>I was thinking about the simplicity of swapDepths() in ActionScript 2.0 and thought that you might be curious as to how one swaps the depths of objects on the stage in ActionScript 3.0.</p>
<p>I have created a practical example which swaps the depths of images on the stage at regular intervals to create a slideshow. I have used the Tween class for the transition effect. My example makes use of:</p>
<ol>
<li>setInterval() &#8211; Swap pictures at a specified time interval.</li>
<li>swapChildrenAt() &#8211; Swaps the depths of two pictures at specified index positions.</li>
<li>getChildAt() &#8211; Returns the picture at the specified index position.</li>
<li>Tween() &#8211; Used to tween the position of the top picture.</li>
</ol>
<p>(This file will open in Flash CS3)   (<a title="Preview File" href="http://lab.simplicit.co.za/previews/as3simplepictureslideshow/preview.html" target="_blank">Preview File</a>)<br />
<a href="http://lab.simplicit.co.za/wp-content/uploads/2009/02/as3_simple_picture_slideshow.zip">Get Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=135</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using trace() in FlashDevelop</title>
		<link>http://lab.simplicit.co.za/?p=123</link>
		<comments>http://lab.simplicit.co.za/?p=123#comments</comments>
		<pubDate>Fri, 09 Jan 2009 15:21:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FlashDevelop]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=123</guid>
		<description><![CDATA[One thing which bugged me for a bit was not being able to trace to the output panel using trace(). However, FlashDevelop has its own method of tracing messages to the output panel. Just add import org.flashdevelop.utils.FlashConnect;to your code and whenever you want to trace a message to the output panel, simply use FlashConnect.trace('your message'); [...]]]></description>
			<content:encoded><![CDATA[<p>One thing which bugged me for a bit was not being able to trace to the output panel using trace(). However, FlashDevelop has its own method of tracing messages to the output panel.</p>
<p>Just add <code>import org.flashdevelop.utils.FlashConnect;</code>to your code and whenever you want to trace a message to the output panel, simply use <code>FlashConnect.trace('your message');</code></p>
<p>That&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=123</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Intro to FlashDevelop</title>
		<link>http://lab.simplicit.co.za/?p=121</link>
		<comments>http://lab.simplicit.co.za/?p=121#comments</comments>
		<pubDate>Fri, 09 Jan 2009 15:14:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[FlashDevelop]]></category>

		<guid isPermaLink="false">http://lab.simplicit.co.za/?p=121</guid>
		<description><![CDATA[Although I have played with it in the past, I have started developing using FlashDevelop, which is &#8220;a free and open source (MIT license) code editor&#8221;. It is a fantastic environment for ActionScript 3.0 coding and the compilation of SWF files. A big advantage of coding in FlashDevelop apposed to the Flash IDE is speed, [...]]]></description>
			<content:encoded><![CDATA[<p>Although I have played with it in the past, I have started developing using <a title="FlashDevelop" href="http://www.flashdevelop.org/community/" target="_blank">FlashDevelop</a>, which is &#8220;a free and open source (MIT license) code editor&#8221;.</p>
<p>It is a fantastic environment for ActionScript 3.0 coding and the compilation of SWF files. A big advantage of coding in FlashDevelop apposed to the Flash IDE is speed, code completion and code generation. FlashDevelop is an alternative to <a title="Adobe Flex 3" href="http://www.adobe.com/products/flex/" target="_blank">Adobe Flex</a> which costs around US$250 and FlashDevelop uses the Flex SDK anyway.</p>
<p>I still use the Flash IDE and timeline based coding, however, I feel that completely dynamic projects are best compiled in FlashDevelop.</p>
<p>Have a look at <a title="FlashDevelop Features" href="http://www.flashdevelop.org/wikidocs/index.php?title=Features" target="_blank">FlashDevelop&#8217;s features</a> or view the <a title="FlashDevelop Feature Tour" href="http://www.flashdevelop.org/wikidocs/index.php?title=Features:Interface" target="_blank">feature tour</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lab.simplicit.co.za/?feed=rss2&amp;p=121</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
