<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: ActionScript MVC minimalist example for PureMVC 2.0.3</title>
	<link>http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/</link>
	<description>The Vixiom Blog :: Flex &#38; Flash on Rails</description>
	<pubDate>Thu, 28 Aug 2008 08:50:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: Dave Keen</title>
		<link>http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-59215</link>
		<dc:creator>Dave Keen</dc:creator>
		<pubDate>Sun, 20 Jul 2008 12:50:29 +0000</pubDate>
		<guid>http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-59215</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 :)</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.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-52122</link>
		<dc:creator>gilles</dc:creator>
		<pubDate>Thu, 17 Apr 2008 13:18:55 +0000</pubDate>
		<guid>http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-52122</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, "How to Setup Your First PureMVC Application" :
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.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-52069</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Thu, 17 Apr 2008 04:35:11 +0000</pubDate>
		<guid>http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-52069</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're dealing with an 'Application' rather than the Stage, so in your main MXML file you set 'facade.startup(this)' to run on the creationComplete event ('this' 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 :)</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.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-51961</link>
		<dc:creator>gilles</dc:creator>
		<pubDate>Wed, 16 Apr 2008 12:12:48 +0000</pubDate>
		<guid>http://blog.vixiom.com/2008/04/01/actionscript-mvc-minimalist-example-for-puremvc-203/#comment-51961</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>
