<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: ActionScript MVC minimalist example for PureMVC 2.0.3</title>
	<atom:link href="http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/</link>
	<description>Flex, Ruby, etc. etc.</description>
	<lastBuildDate>Sat, 06 Feb 2010 21:14:13 -0800</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Flash Tips &#187; PureMVC wows</title>
		<link>http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/comment-page-1/#comment-660</link>
		<dc:creator>Flash Tips &#187; PureMVC wows</dc:creator>
		<pubDate>Tue, 18 Nov 2008 03:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-660</guid>
		<description>[...] ActionScript MVC minimalist example Updated for PureMVC 2.0.3 [...]</description>
		<content:encoded><![CDATA[<p>[...] ActionScript MVC minimalist example Updated for PureMVC 2.0.3 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Keen</title>
		<link>http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/comment-page-1/#comment-659</link>
		<dc:creator>Dave Keen</dc:creator>
		<pubDate>Sun, 20 Jul 2008 12:50:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-659</guid>
		<description>Hey all,

PureMVC definitely needs more tutorials, so I’ve done my bit to help out by writing one :)

Check it out at http://www.actionscriptdeveloper.co.uk/puremvc-tutorial-flex-puremvc-jabber-and-xiff-3-introduction/

Enjoy,

Dave
http://www.actionscriptdeveloper.co.uk</description>
		<content:encoded><![CDATA[<p>Hey all,</p>
<p>PureMVC definitely needs more tutorials, so I’ve done my bit to help out by writing one <img src='http://blog.alastairdawson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Check it out at <a href="http://www.actionscriptdeveloper.co.uk/puremvc-tutorial-flex-puremvc-jabber-and-xiff-3-introduction/" rel="nofollow">http://www.actionscriptdeveloper.co.uk/puremvc-tutorial-flex-puremvc-jabber-and-xiff-3-introduction/</a></p>
<p>Enjoy,</p>
<p>Dave<br />
<a href="http://www.actionscriptdeveloper.co.uk" rel="nofollow">http://www.actionscriptdeveloper.co.uk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gilles</title>
		<link>http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/comment-page-1/#comment-658</link>
		<dc:creator>gilles</dc:creator>
		<pubDate>Thu, 17 Apr 2008 13:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-658</guid>
		<description>I will have a look at all this, your example got my started...and grab a part of the concepts....
I would advise this example which is simple and good and works with mxml, &quot;How to Setup Your First PureMVC Application&quot; :
http://9mmedia.com/blog/?p=10

Good day to you !</description>
		<content:encoded><![CDATA[<p>I will have a look at all this, your example got my started&#8230;and grab a part of the concepts&#8230;.<br />
I would advise this example which is simple and good and works with mxml, &#8220;How to Setup Your First PureMVC Application&#8221; :<br />
<a href="http://9mmedia.com/blog/?p=10" rel="nofollow">http://9mmedia.com/blog/?p=10</a></p>
<p>Good day to you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alastair</title>
		<link>http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/comment-page-1/#comment-657</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Thu, 17 Apr 2008 04:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-657</guid>
		<description>Hey Gilles,

Take a look at the PureMVC site they have some Flex examples which are a bit more complicated than the minimalist one but show you how to get started.

In Flex you&#039;re dealing with an &#039;Application&#039; rather than the Stage, so in your main MXML file you set &#039;facade.startup(this)&#039; to run on the creationComplete event (&#039;this&#039; being the Application). There are a couple of other things you need to do like make sure PureMVC is defined in your name space (xmlns) and that the facade has been created in a mx:Script tag (private var facade:ApplicationFacade = ApplicationFacade.getInstance()).

Probably a bit confusing here but check out this Flex example and things should be clear as mud :)

http://trac.puremvc.org/Demo_AS3_Flex_AppSkeleton</description>
		<content:encoded><![CDATA[<p>Hey Gilles,</p>
<p>Take a look at the PureMVC site they have some Flex examples which are a bit more complicated than the minimalist one but show you how to get started.</p>
<p>In Flex you&#8217;re dealing with an &#8216;Application&#8217; rather than the Stage, so in your main MXML file you set &#8216;facade.startup(this)&#8217; to run on the creationComplete event (&#8217;this&#8217; being the Application). There are a couple of other things you need to do like make sure PureMVC is defined in your name space (xmlns) and that the facade has been created in a mx:Script tag (private var facade:ApplicationFacade = ApplicationFacade.getInstance()).</p>
<p>Probably a bit confusing here but check out this Flex example and things should be clear as mud <img src='http://blog.alastairdawson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://trac.puremvc.org/Demo_AS3_Flex_AppSkeleton" rel="nofollow">http://trac.puremvc.org/Demo_AS3_Flex_AppSkeleton</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gilles</title>
		<link>http://blog.alastairdawson.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/comment-page-1/#comment-661</link>
		<dc:creator>gilles</dc:creator>
		<pubDate>Wed, 16 Apr 2008 12:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-661</guid>
		<description>This example is really nice for the realMVC newbies. I would have a question, which answer will spare me lot of time :

I would like to intiate my facade in my mxml file (into ). What should I do since
facade.startup(this.stage);
returns an error ?

Thanks so much !</description>
		<content:encoded><![CDATA[<p>This example is really nice for the realMVC newbies. I would have a question, which answer will spare me lot of time :</p>
<p>I would like to intiate my facade in my mxml file (into ). What should I do since<br />
facade.startup(this.stage);<br />
returns an error ?</p>
<p>Thanks so much !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
