<?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>Comentarios en: Cairngorm: Secuenciado de Commands</title>
	<atom:link href="http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/</link>
	<description>Creando Soluciones RIA...</description>
	<lastBuildDate>Thu, 09 Feb 2012 14:07:39 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: Joan Garnet</title>
		<link>http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/comment-page-1/#comment-55285</link>
		<dc:creator>Joan Garnet</dc:creator>
		<pubDate>Tue, 11 Nov 2008 07:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/#comment-55285</guid>
		<description>Each of those functions could be an execute() method in a command class,  you just have to refactor your code.
Anyway, you can always chain your functions like this: 

function f1( nextFunction:Function ){
     //.....some logic here.....
     nextFunction.call();
}
f1( f2 );

and so on...
Cheers</description>
		<content:encoded><![CDATA[<p>Each of those functions could be an execute() method in a command class,  you just have to refactor your code.<br />
Anyway, you can always chain your functions like this: </p>
<p>function f1( nextFunction:Function ){<br />
     //&#8230;..some logic here&#8230;..<br />
     nextFunction.call();<br />
}<br />
f1( f2 );</p>
<p>and so on&#8230;<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: rui</title>
		<link>http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/comment-page-1/#comment-53463</link>
		<dc:creator>rui</dc:creator>
		<pubDate>Wed, 05 Nov 2008 17:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/#comment-53463</guid>
		<description>Hi, Can you help me with implementation?

I have this mainFunction on a file.as (not a class)

===============
public function mainFunction():void {

     funtion1();

     funtion2();

     funtion3(); //execute some code on displayObjects
     funtion4(); //execute some code on displayObjects

     funtion5(); //execute some code on displayObjects

}
==========================
this kind of code frezze my app, and I&#039;m trying to implement your aprouch... but the addCommand ask for Class, and I need to execute my function1 function2 function3 with access to my displayObjects...

Can you sample me the addComand without Class? or the Class having access to my displayObjects?

thanks,
rui</description>
		<content:encoded><![CDATA[<p>Hi, Can you help me with implementation?</p>
<p>I have this mainFunction on a file.as (not a class)</p>
<p>===============<br />
public function mainFunction():void {</p>
<p>     funtion1();</p>
<p>     funtion2();</p>
<p>     funtion3(); //execute some code on displayObjects<br />
     funtion4(); //execute some code on displayObjects</p>
<p>     funtion5(); //execute some code on displayObjects</p>
<p>}<br />
==========================<br />
this kind of code frezze my app, and I&#8217;m trying to implement your aprouch&#8230; but the addCommand ask for Class, and I need to execute my function1 function2 function3 with access to my displayObjects&#8230;</p>
<p>Can you sample me the addComand without Class? or the Class having access to my displayObjects?</p>
<p>thanks,<br />
rui</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Flex+Cairngorm en castellano desde MIF : Joan Garnet</title>
		<link>http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/comment-page-1/#comment-14049</link>
		<dc:creator>Flex+Cairngorm en castellano desde MIF : Joan Garnet</dc:creator>
		<pubDate>Thu, 31 Jul 2008 09:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/#comment-14049</guid>
		<description>[...] Mediante dos ejemplos muestro como encadenar asíncronamente series de Commands en Cairngorm. [...]</description>
		<content:encoded><![CDATA[<p>[...] Mediante dos ejemplos muestro como encadenar asíncronamente series de Commands en Cairngorm. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: theklue</title>
		<link>http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/comment-page-1/#comment-3417</link>
		<dc:creator>theklue</dc:creator>
		<pubDate>Sun, 09 Sep 2007 08:46:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/#comment-3417</guid>
		<description>Creo que el secuenciado de eventos es uno de los problemas de &quot;diseño&quot; más típicos que te encuentras en un proyecto Cairngorm. Aunque se pueda resolver con el SequenceCommand, como muy bien dices, en ciertos casos repites muchisimo código. No conocía este sistema y sé que le voy a sacar mucho partido.

Muchas gracias por la entrada y un saludo,

Alberto</description>
		<content:encoded><![CDATA[<p>Creo que el secuenciado de eventos es uno de los problemas de &#8220;diseño&#8221; más típicos que te encuentras en un proyecto Cairngorm. Aunque se pueda resolver con el SequenceCommand, como muy bien dices, en ciertos casos repites muchisimo código. No conocía este sistema y sé que le voy a sacar mucho partido.</p>
<p>Muchas gracias por la entrada y un saludo,</p>
<p>Alberto</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: PaSCuaLiN</title>
		<link>http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/comment-page-1/#comment-3412</link>
		<dc:creator>PaSCuaLiN</dc:creator>
		<pubDate>Fri, 07 Sep 2007 10:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/09/07/cairngorm-secuenciado-de-commands/#comment-3412</guid>
		<description>Genial entrada, muy práctica y didáctica!! Muchas gracias Joan!</description>
		<content:encoded><![CDATA[<p>Genial entrada, muy práctica y didáctica!! Muchas gracias Joan!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

