<?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"
	>
<channel>
	<title>Comments on: Programando en AS3 desde Flash CS3 (II)</title>
	<atom:link href="http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/feed/" rel="self" type="application/rss+xml" />
	<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/</link>
	<description>Blog de programación creativa mantenido por llops. Experimentos y artículos entorno a la plataforma flash y as3.</description>
	<pubDate>Wed, 20 Aug 2008 13:14:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: k_pqW</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-178</link>
		<dc:creator>k_pqW</dc:creator>
		<pubDate>Wed, 04 Jun 2008 07:43:06 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-178</guid>
		<description>No m... Jajaja, wow! ke alegria... llevaba tres dias (literal) tratando de solucionar ese error. Uffff... ¡¡Te amooooo!!!</description>
		<content:encoded><![CDATA[<p>No m&#8230; Jajaja, wow! ke alegria&#8230; llevaba tres dias (literal) tratando de solucionar ese error. Uffff&#8230; ¡¡Te amooooo!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LLops</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-145</link>
		<dc:creator>LLops</dc:creator>
		<pubDate>Thu, 17 Apr 2008 07:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-145</guid>
		<description>Hola Eliseo, tienes toda la razón.
Escribí sobre el tema (pero enfocado a la inicialización de eventos) en este artículo:
http://llops.com/blog/2008/02/18/accediendo-al-stage-antes-de-tiempo/

Un saludo!</description>
		<content:encoded><![CDATA[<p>Hola Eliseo, tienes toda la razón.<br />
Escribí sobre el tema (pero enfocado a la inicialización de eventos) en este artículo:<br />
<a href="http://llops.com/blog/2008/02/18/accediendo-al-stage-antes-de-tiempo/"  rel="nofollow">http://llops.com/blog/2008/02/18/accediendo-al-stage-antes-de-tiempo/</a></p>
<p>Un saludo!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eliseo</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-144</link>
		<dc:creator>Eliseo</dc:creator>
		<pubDate>Thu, 17 Apr 2008 06:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-144</guid>
		<description>Sólo como comentario a variables de la película principal desde una clase.
Si tenemos algo como
[as3]
//Clase Pelota que no funciona
package {
	public class Pelota extends MovieClip {
		function Pelota() {
                       MovieClip(parent).variable=5
		}
        }
}
[/as3]
NO va a funcionar, si lo que queremos es añadir "Pelotas" con algo como
[as3]
//Nuestra película principal
package {
	public class Main extends MovieClip {
		public variable:int
		function Main() {
			for (var i:int=0;i&#60;30;i++){
  			    var pelota:Pelota=new Pelota();
 			    addChild(pelota);
			}
		}
       }
}
[/as3]
Debido a que la Pelota se crea cuando hacemos el new y todavía no tiene padre. Aunque sí funcionará si no estamos añadiendo dinámicamente los Objetos.

Para evitar esto, debemos usar el evento ADDED_TO_STAGE
[as3]
//Clase Pelota
package {
	public class Pelota extends MovieClip {
		function Pelota() {
			addEventListener(Event.ADDED_TO_STAGE,initPelota,false,0,true);
                }
                public function initPelota(){
                       MovieClip(parent).variable=5
		}
        }
}
[/as3]

NOTA:Gracias por estos aportes que has hecho</description>
		<content:encoded><![CDATA[<p>Sólo como comentario a variables de la película principal desde una clase.<br />
Si tenemos algo como</p>
<div class="igBar"><span id="lactionscript3-1"><a href="#" onclick="javascript:showCodeTxt('actionscript3-1'); return false;">Plain Text</a></span></div>
<div class="syntax_hilite">
<div id="actionscript3-1">
<div class="actionscript3">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #FF9933; font-style: italic;">//Clase Pelota que no funciona</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #1518ff;">package</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #1518ff;">public</span> <span style="color: #1518ff;">class</span> Pelota <span style="color: #1518ff;">extends</span> <span style="color: #000099;">MovieClip</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #1518ff;">function</span> Pelota<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000099;">MovieClip</span><span style="color: #000000;">&#40;</span>parent<span style="color: #000000;">&#41;</span>.<span style="color: #000000;">variable</span>=<span style="color: #FF0000;color:#000099;">5</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
NO va a funcionar, si lo que queremos es añadir "Pelotas" con algo como</p>
<div class="igBar"><span id="lactionscript3-2"><a href="#" onclick="javascript:showCodeTxt('actionscript3-2'); return false;">Plain Text</a></span></div>
<div class="syntax_hilite">
<div id="actionscript3-2">
<div class="actionscript3">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #FF9933; font-style: italic;">//Nuestra película principal</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #1518ff;">package</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #1518ff;">public</span> <span style="color: #1518ff;">class</span> Main <span style="color: #1518ff;">extends</span> <span style="color: #000099;">MovieClip</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #1518ff;">public</span> variable:<span style="color: #000099;">int</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #1518ff;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #1518ff;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #1518ff;">var</span> i:<span style="color: #000099;">int</span>=<span style="color: #FF0000;color:#000099;">0</span>;i&amp;lt;<span style="color: #FF0000;color:#000099;">30</span>;i++<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<span style="color: #1518ff;">var</span> pelota:Pelota=<span style="color: #1518ff;">new</span> Pelota<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; addChild<span style="color: #000000;">&#40;</span>pelota<span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Debido a que la Pelota se crea cuando hacemos el new y todavía no tiene padre. Aunque sí funcionará si no estamos añadiendo dinámicamente los Objetos.</p>
<p>Para evitar esto, debemos usar el evento ADDED_TO_STAGE</p>
<div class="igBar"><span id="lactionscript3-3"><a href="#" onclick="javascript:showCodeTxt('actionscript3-3'); return false;">Plain Text</a></span></div>
<div class="syntax_hilite">
<div id="actionscript3-3">
<div class="actionscript3">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #FF9933; font-style: italic;">//Clase Pelota</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #1518ff;">package</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #1518ff;">public</span> <span style="color: #1518ff;">class</span> Pelota <span style="color: #1518ff;">extends</span> <span style="color: #000099;">MovieClip</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #1518ff;">function</span> Pelota<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addEventListener<span style="color: #000000;">&#40;</span><span style="color: #000099;">Event</span>.<span style="color: #000000;">ADDED_TO_STAGE</span>,initPelota,<span style="color: #000099;">false</span>,<span style="color: #FF0000;color:#000099;">0</span>,<span style="color: #000099;">true</span><span style="color: #000000;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #1518ff;">public</span> <span style="color: #1518ff;">function</span> initPelota<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000099;">MovieClip</span><span style="color: #000000;">&#40;</span>parent<span style="color: #000000;">&#41;</span>.<span style="color: #000000;">variable</span>=<span style="color: #FF0000;color:#000099;">5</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#666666;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>NOTA:Gracias por estos aportes que has hecho</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-62</link>
		<dc:creator>Juan</dc:creator>
		<pubDate>Fri, 15 Feb 2008 11:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-62</guid>
		<description>Estaré atento a un futuro artículo sobre el modelo de eventos de AS3. 
Saludos! ;)</description>
		<content:encoded><![CDATA[<p>Estaré atento a un futuro artículo sobre el modelo de eventos de AS3.<br />
Saludos! ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-61</link>
		<dc:creator>Juan</dc:creator>
		<pubDate>Fri, 15 Feb 2008 09:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-61</guid>
		<description>Felicidades Llops. De verdad.
Gracias por el tiempo dedicado a escribir.</description>
		<content:encoded><![CDATA[<p>Felicidades Llops. De verdad.<br />
Gracias por el tiempo dedicado a escribir.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billy Rippe</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-56</link>
		<dc:creator>Billy Rippe</dc:creator>
		<pubDate>Thu, 07 Feb 2008 04:50:13 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-56</guid>
		<description>No te imaginas lo que luche con este error, llevaba dos dias sin saber que pasaba y estaba muy perdido... no sabia por donde abordarlo... fue tanta la frustracion que cuando sali de la oficina los ojos se me aguaron...
cuando mande la pelicula y funciono... logre respirar cosa que no habia hecho desde ayer por la manana... no se como sobrevivi... Mil gracias</description>
		<content:encoded><![CDATA[<p>No te imaginas lo que luche con este error, llevaba dos dias sin saber que pasaba y estaba muy perdido... no sabia por donde abordarlo... fue tanta la frustracion que cuando sali de la oficina los ojos se me aguaron...<br />
cuando mande la pelicula y funciono... logre respirar cosa que no habia hecho desde ayer por la manana... no se como sobrevivi... Mil gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alrevez</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-55</link>
		<dc:creator>Alrevez</dc:creator>
		<pubDate>Sun, 03 Feb 2008 02:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-55</guid>
		<description>:D muchas gracias por estos articulos son de mucha ayuda, estaré esperando los próximos muy atento!</description>
		<content:encoded><![CDATA[<p>:D muchas gracias por estos articulos son de mucha ayuda, estaré esperando los próximos muy atento!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LLops</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-26</link>
		<dc:creator>LLops</dc:creator>
		<pubDate>Tue, 11 Dec 2007 15:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-26</guid>
		<description>El compilador lo único que hace es evaluar código, no es consciente si tú has cogido un objeto y lo has convertido en MovieClip mediante F8 o lo has convertido en Sprite a través de una instrucción. Sólo puede asegurarnos que pertenece a la clase DisplayObjectContainer por tener contenido.

Además, en as3 es posible reparentar cualquier objeto en la DisplayList (sin tener que destruirlo y crearlo de nuevo, sólo moviéndolo). ¿Qué pasaría si limitara los objetos directamente a MovieClip? No se podría reparentar un Sprite, por ejemplo, ya que generaría error.</description>
		<content:encoded><![CDATA[<p>El compilador lo único que hace es evaluar código, no es consciente si tú has cogido un objeto y lo has convertido en MovieClip mediante F8 o lo has convertido en Sprite a través de una instrucción. Sólo puede asegurarnos que pertenece a la clase DisplayObjectContainer por tener contenido.</p>
<p>Además, en as3 es posible reparentar cualquier objeto en la DisplayList (sin tener que destruirlo y crearlo de nuevo, sólo moviéndolo). ¿Qué pasaría si limitara los objetos directamente a MovieClip? No se podría reparentar un Sprite, por ejemplo, ya que generaría error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j.mat</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-25</link>
		<dc:creator>j.mat</dc:creator>
		<pubDate>Mon, 10 Dec 2007 22:10:13 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-25</guid>
		<description>La verdad es que está bien explicado, pero no acabo de entender cómo es posible que el compilador no sepa que estás utilizando un movieclip y tengas que decírselo con el casting...</description>
		<content:encoded><![CDATA[<p>La verdad es que está bien explicado, pero no acabo de entender cómo es posible que el compilador no sepa que estás utilizando un movieclip y tengas que decírselo con el casting...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LLops</title>
		<link>http://llops.com/blog/2007/12/01/programando-en-as3-desde-flash-cs3-ii/#comment-22</link>
		<dc:creator>LLops</dc:creator>
		<pubDate>Tue, 04 Dec 2007 21:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://llops.com/n/2007/11/19/programando-en-as3-desde-flash-cs3-ii/#comment-22</guid>
		<description>Hola Comet, la verdad es que siempre utilizo la nomenclatura "_mc", pero aquí mira... 
Creo que aún escribiré algún artículo más de esta serie ;)

Un saludo!</description>
		<content:encoded><![CDATA[<p>Hola Comet, la verdad es que siempre utilizo la nomenclatura "_mc", pero aquí mira...<br />
Creo que aún escribiré algún artículo más de esta serie ;)</p>
<p>Un saludo!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
