<?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>Tim Ashworth &#187; Flex</title>
	<atom:link href="http://www.timashworth.co.uk/category/flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timashworth.co.uk</link>
	<description>Code, cooking and opinion, all my own work!</description>
	<lastBuildDate>Tue, 06 Jul 2010 15:57:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cairngorm Getting Started Part Six &#8211; Displaying the Data</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-displaying-the-data/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-displaying-the-data/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 09:24:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=74</guid>
		<description><![CDATA[Now we&#8217;ve got the data back we need somewhere to store it.  This is where the model comes in.  Let&#8217;s create a ModelLocator called MemoryModelLocator.  It implements IModelLocator.  The interface doesn&#8217;t actually require any functions, it is just there to type the class.  Here&#8217;s the class
package com.worthyashes.simpleCairngorm.model
{
	import com.adobe.cairngorm.model.IModelLocator;
	[Bindable]
	public class MemoryModelLocator implements IModelLocator
	{
		//Singleton code
		private static var [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-displaying-the-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Five : Delegates and Responders</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-delegates-and-responders/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-delegates-and-responders/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 15:09:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=73</guid>
		<description><![CDATA[We&#8217;ve created our LoadXMLEvent, created our FrontController and that has linked the event with the command to get the XML.  Now we need to create our next set of classes.  The Delegate class deals with retriving the data, it does this by using another Cairngorm class called the ServiceLocator.  As the Delegate [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-getting-started-part-six-delegates-and-responders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Four : Events, Commands and Controllers</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-four-events-commands-and-controllers/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-four-events-commands-and-controllers/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 14:20:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=65</guid>
		<description><![CDATA[So we&#8217;ve had a chat about the MVC design pattern and how that relates to Cairngorm, set up the environment and we&#8217;ve discussed how Singletons work.  Now we are ready to start using the framework to create a basic application.
Frameworks like Cairngorm really come into their own when you are creating a large or relatively [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-four-events-commands-and-controllers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cairngorm Getting Started Part Three : Singletons</title>
		<link>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-three-singletons/</link>
		<comments>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-three-singletons/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 21:07:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cairngorm]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=56</guid>
		<description><![CDATA[We&#8217;ve covered an overview of the MVC pattern and how it relates to Cairngorm and we&#8217;ve set up the environment and we&#8217;ve set up the environment so we can finally start to play with some code.  Nearly.
There is one last concept to go over before we move on, Singletons,  I&#8217;m sure that most of you [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/07/cairngorm-simple-example-part-three-singletons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Custom Flex Preloaders Part Five : A few more examples</title>
		<link>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-five-a-few-more-examples/</link>
		<comments>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-five-a-few-more-examples/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 10:27:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=54</guid>
		<description><![CDATA[In Part Four we tidied up the code a bit with another class I&#8217;ve called CustomPreloader to extend the DownloadProgressBar class and hold the required functions for CustomPreloaders.  Now if we extend the CustomPreloader class all we need to do is override the listener functions to control our preloader.  So lets have a look at [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-five-a-few-more-examples/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Custom Flex Preloaders Part Four : Tidying up the Code</title>
		<link>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-four-tidying-up-the-code/</link>
		<comments>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-four-tidying-up-the-code/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 15:32:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=52</guid>
		<description><![CDATA[Right so in Part Three we actually got to write a bit of code and see a working custom flex preloader (even if it doesn&#8217;t really look very pretty).
Looking at the code I can tidy this up a bit.  We are always going to need to override the set preloader function to add the listeners.  [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-four-tidying-up-the-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Flex Preloaders : Part Three Finally we&#8217;re playing with Flex</title>
		<link>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-3-finally-were-playing-with-flex/</link>
		<comments>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-3-finally-were-playing-with-flex/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 14:07:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=49</guid>
		<description><![CDATA[OK &#8211; so check out Part Two for see the flash assets we&#8217;ve produced and download them from here if you need them &#8211; &#62; Basic Flash Assets.
Now we want to create a new flex project.  Open flex and create a new project, call it whatever you feel like and click on finish.
Create an assets [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders-part-3-finally-were-playing-with-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Flex Preload Part Two : Producing the SWF</title>
		<link>http://www.timashworth.co.uk/2008/06/custom-flex-preload-part-two-producing-the-swf/</link>
		<comments>http://www.timashworth.co.uk/2008/06/custom-flex-preload-part-two-producing-the-swf/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 11:26:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=44</guid>
		<description><![CDATA[Please see Part One for the introduction to this post
We are going to embed a swf into a class that extends the DownloadProgressBar to take the place of the standard flex preloader.  Rather than just dumping a swf into the preloader we want to have some form of access to the assets in the swf [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/custom-flex-preload-part-two-producing-the-swf/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Custom Flex Preloaders : Part One &#8211; Credit where credit is due</title>
		<link>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders/</link>
		<comments>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 16:19:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=42</guid>
		<description><![CDATA[So &#8211; I&#8217;ve got bored of the standard flex preloader.  (Actually the company I&#8217;m working at has)  I&#8217;ve got away with it so far as the applications I&#8217;ve been working on have either been back-end systems or prototypes so the great unwashed (in which I include myself, expecially today as Charlie was up most of [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/custom-flex-preloaders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex Style Explorer and FlexSpy &#8211; Get to grips with your Flex design</title>
		<link>http://www.timashworth.co.uk/2008/06/flex-style-explorer-and-flexspy-get-to-grips-with-your-flex-design/</link>
		<comments>http://www.timashworth.co.uk/2008/06/flex-style-explorer-and-flexspy-get-to-grips-with-your-flex-design/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 09:42:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Builder]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=41</guid>
		<description><![CDATA[OK, one of the great things about working with Flex is how configurable the design is.  You can use CSS, easily create skins by using images or programatically with ActionScript.  So why do so many flex apps look like, er, flex apps.  I think for two reasons.  The big take up on flex has been [...]]]></description>
		<wfw:commentRss>http://www.timashworth.co.uk/2008/06/flex-style-explorer-and-flexspy-get-to-grips-with-your-flex-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
