<?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>Hontai &#187; AS3</title>
	<atom:link href="http://www.hontai.es/tag/as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hontai.es</link>
	<description>Hontai? no sería mejor hentai(manga guarro)?</description>
	<lastBuildDate>Sun, 09 May 2010 19:34:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Movieclip, eliminarse a si mismo en AS3</title>
		<link>http://www.hontai.es/2009/07/movieclip-eliminarse-a-si-mismo-en-as3/</link>
		<comments>http://www.hontai.es/2009/07/movieclip-eliminarse-a-si-mismo-en-as3/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 22:12:12 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=241</guid>
		<description><![CDATA[Antes con as2 para borrar un movieclip valía con escribir:
PLAIN TEXT
Actionscript:




this.removeMovieClip&#40;&#41;; 






Ahora con as3 tendríamos que utilizar:
PLAIN TEXT
Actionscript:




this.parent.removeChild&#40;this&#41; 






Espero que os sea de utilidad.
]]></description>
			<content:encoded><![CDATA[<p>Antes con <a href="http://www.hontai.es/tag/as2/">as2</a> para borrar un movieclip valía con escribir:</p>
<div class="igBar"><span id="lactionscript-3"><a href="#" onclick="javascript:showPlainTxt('actionscript-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-3">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">removeMovieClip</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Ahora con <a href="http://www.hontai.es/tag/as3/">as3</a> tendríamos que utilizar:</p>
<div class="igBar"><span id="lactionscript-4"><a href="#" onclick="javascript:showPlainTxt('actionscript-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-4">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">this</span>.<span style="color: #006600;">parent</span>.<span style="color: #006600;">removeChild</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span><span style="color: #66cc66;">&#41;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Espero que os sea de utilidad.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/07/movieclip-eliminarse-a-si-mismo-en-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loop para FLVPlayback en AS3</title>
		<link>http://www.hontai.es/2009/06/loop-para-flvplayback-en-as3/</link>
		<comments>http://www.hontai.es/2009/06/loop-para-flvplayback-en-as3/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 21:41:12 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[FLVPlayback]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=215</guid>
		<description><![CDATA[Hace unos días puse un artículo en el que explicaba una forma muy sencilla de hacer un loop en AS2 en el FLVPlayback. Hoy traigo lo mismo pero para AS3, es algo mas complejo, pero no deja de ser bastante sencillo.
PLAIN TEXT
Actionscript:




import fl.video.VideoEvent;


&#160;


my_FLVPlayback.autoRewind=true;


&#160;


function again&#40;event:VideoEvent&#41;:void &#123;


my_FLVPlayback.play&#40;&#41;;


&#125;


my_FLVPlayback.addEventListener&#40;VideoEvent.COMPLETE, again&#41;; 






Espero que os sea de utilidad. Un saludo
]]></description>
			<content:encoded><![CDATA[<p>Hace unos días puse un artículo en el que explicaba una forma muy sencilla de hacer un <a href="http://www.hontai.es/2009/06/loop-para-flvplayback-en-as2/">loop en AS2</a> en el FLVPlayback. Hoy traigo lo mismo pero para <a href="http://www.hontai.es/tag/as3/">AS3</a>, es algo mas complejo, pero no deja de ser bastante sencillo.</p>
<div class="igBar"><span id="lactionscript-6"><a href="#" onclick="javascript:showPlainTxt('actionscript-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-6">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> fl.<span style="color: #0066CC;">video</span>.<span style="color: #006600;">VideoEvent</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">my_FLVPlayback.<span style="color: #006600;">autoRewind</span>=<span style="color: #000000; font-weight: bold;">true</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">function</span> again<span style="color: #66cc66;">&#40;</span>event:VideoEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">my_FLVPlayback.<span style="color: #0066CC;">play</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">my_FLVPlayback.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>VideoEvent.<span style="color: #006600;">COMPLETE</span>, again<span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Espero que os sea de utilidad. Un saludo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/loop-para-flvplayback-en-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editor de codigo actionscript</title>
		<link>http://www.hontai.es/2009/06/editor-de-codigo-actionscript/</link>
		<comments>http://www.hontai.es/2009/06/editor-de-codigo-actionscript/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 17:19:12 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=200</guid>
		<description><![CDATA[Me acabo de encontrar con la siguiente página en la que si introduces un código en ActionScript  te lo prepara para poder postearlo, poniéndote el código coloreado, la verdad es que resulta bastante útil a la hora de crear un nuevo artículo siempre y cuando no tengas algún plugin para wordpress que ya te lo [...]]]></description>
			<content:encoded><![CDATA[<p>Me acabo de encontrar con la <a href="http://www.shockwave-india.com/blog/services/as-highlight2/index.php">siguiente página</a> en la que si introduces un código en ActionScript  te lo prepara para poder postearlo, poniéndote el código coloreado, la verdad es que resulta bastante útil a la hora de crear un nuevo artículo siempre y cuando no tengas algún plugin para wordpress que ya te lo hace automáticamente. Yo en mi caso tengo el <a href="http://www.cristalab.com/tips/instalacion-de-plugin-igsyntax-hiliter-para-wordpress-c26765l/">iG:Syntax Hiliter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/editor-de-codigo-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Descargar PDF en AS3</title>
		<link>http://www.hontai.es/2009/06/descargar-pdf-en-as3/</link>
		<comments>http://www.hontai.es/2009/06/descargar-pdf-en-as3/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 11:10:37 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=178</guid>
		<description><![CDATA[Uno de los problemas que me he encontrado esta semana es la de descargarme un PDF. Normalmente cuando ponemos un link a un PDF el navegador lo que nos hace es abrirlo. Para poder solucionar esto se utilizaría un código similar al siguiente:
PLAIN TEXT
Actionscript:




package &#123;


import flash.display.Sprite;


import flash.events.*;


import flash.net.FileReference;


import flash.net.URLRequest;


import flash.net.FileFilter;


&#160;


public class FileReference_download extends Sprite &#123;


private [...]]]></description>
			<content:encoded><![CDATA[<p>Uno de los problemas que me he encontrado esta semana es la de descargarme un PDF. Normalmente cuando ponemos un link a un PDF el navegador lo que nos hace es abrirlo. Para poder solucionar esto se utilizaría un código similar al siguiente:</p>
<div class="igBar"><span id="lactionscript-8"><a href="#" onclick="javascript:showPlainTxt('actionscript-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-8">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">package <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Sprite</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.*;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">net</span>.<span style="color: #006600;">FileReference</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">net</span>.<span style="color: #006600;">URLRequest</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">net</span>.<span style="color: #006600;">FileFilter</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> FileReference_download <span style="color: #0066CC;">extends</span> Sprite <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> downloadURL:URLRequest;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> fileName:<span style="color: #0066CC;">String</span> = <span style="color: #ff0000;">"SomeFile.pdf"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> file:FileReference;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> FileReference_download<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">downloadURL = <span style="color: #000000; font-weight: bold;">new</span> URLRequest<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">downloadURL.<span style="color: #0066CC;">url</span> = <span style="color: #ff0000;">"http://www.[yourDomain].com/SomeFile.pdf"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">file = <span style="color: #000000; font-weight: bold;">new</span> FileReference<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">configureListeners<span style="color: #66cc66;">&#40;</span>file<span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">file.<span style="color: #006600;">download</span><span style="color: #66cc66;">&#40;</span>downloadURL, fileName<span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Este es un codigo que si buscais en la ayuda de flash por FileReference os aparecerá algo mas completo, aqui simplemente lo he reducido al mínimo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/descargar-pdf-en-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Videotutoriales de Flex</title>
		<link>http://www.hontai.es/2009/06/videotutoriales-de-flex/</link>
		<comments>http://www.hontai.es/2009/06/videotutoriales-de-flex/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 16:01:05 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[videotutorial]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=164</guid>
		<description><![CDATA[Viendo uno de los muchos grupos en los que estoy suscrito en Google Groups me acabo de encontrar con este link bastante interesante a unos videotutoriales. Por lo que cuenta su autor son del primer capitulo del manual de certificación de Flex 3.
Para los que están empezando os recomiendo que le echéis un ojo.
Un saludo

]]></description>
			<content:encoded><![CDATA[<p>Viendo uno de los muchos grupos en los que estoy suscrito en Google Groups me acabo de encontrar con <a href="http://carastmx.blogspot.com/2009/04/nuevos-capitulos-de-flex3.html">este link</a> bastante interesante a unos <a href="http://www.hontai.es/tag/videotutorial/">videotutoriales</a>. Por lo que cuenta su autor son del primer capitulo del manual de certificación de Flex 3.</p>
<p>Para los que están empezando os recomiendo que le echéis un ojo.</p>
<p>Un saludo</p>
<p><a href="http://carastmx.blogspot.com/2009/04/nuevos-capitulos-de-flex3.html"><img class="aligncenter" title="Flex" src="http://img196.imageshack.us/img196/5669/blogoyj.jpg" alt="" width="478" height="358" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/videotutoriales-de-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Betas de Flash Builder, Catalyst y Flex 4</title>
		<link>http://www.hontai.es/2009/06/betas-de-flash-builder-catalyst-y-flex-4/</link>
		<comments>http://www.hontai.es/2009/06/betas-de-flash-builder-catalyst-y-flex-4/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 11:42:40 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=161</guid>
		<description><![CDATA[Pues aquí dejo unos links para poder descargar las versiones beta de estos programas, espero que las disfruteis:
Adobe Flash Builder
Adobe Flash Catalyst
Flex 4 Framework
]]></description>
			<content:encoded><![CDATA[<p>Pues aquí dejo unos links para poder descargar las versiones beta de estos programas, espero que las disfruteis:</p>
<p><a href="http://labs.adobe.com/technologies/flashbuilder4/">Adobe Flash Builder</a></p>
<p><a href="http://labs.adobe.com/technologies/flashcatalyst/">Adobe Flash Catalyst</a></p>
<p><a href="http://labs.adobe.com/technologies/flex4sdk/">Flex 4 Framework</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/betas-de-flash-builder-catalyst-y-flex-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aprender Flex en una semana</title>
		<link>http://www.hontai.es/2009/06/aprender-flex-en-una-semana/</link>
		<comments>http://www.hontai.es/2009/06/aprender-flex-en-una-semana/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 08:09:33 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=158</guid>
		<description><![CDATA[Puede que tardemos algo mas, pero buscando información sobre Flex me encontré con el siguiente link de adobe en el que tienen una serie de videotutoriales divididos en 5 días.
No los he podido ver mucho, pero tienen buena pinta, a parte de que también vienen con una serie de ejercicios para poder poner en práctica [...]]]></description>
			<content:encoded><![CDATA[<p>Puede que tardemos algo mas, pero buscando información sobre <a href="http://www.hontai.es/tag/flex/">Flex</a> me encontré con <a href="http://www.adobe.com/devnet/flex/videotraining/">el siguiente link de adobe</a> en el que tienen una serie de videotutoriales divididos en 5 días.</p>
<p>No los he podido ver mucho, pero tienen buena pinta, a parte de que también vienen con una serie de ejercicios para poder poner en práctica los conocimientos adquiridos.</p>
<p><a href="http://www.adobe.com/devnet/flex/videotraining/"><img class="aligncenter" title="Flex" src="http://img99.imageshack.us/img99/8403/flexf.png" alt="" width="250" height="250" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/aprender-flex-en-una-semana/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comprobar E-mail con expresiones regulares</title>
		<link>http://www.hontai.es/2009/06/comprobar-e-mail-con-expresiones-regulares/</link>
		<comments>http://www.hontai.es/2009/06/comprobar-e-mail-con-expresiones-regulares/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 11:22:12 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[expresiones regulares]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=153</guid>
		<description><![CDATA[Una manera rapida y sencilla de comprobar si lo que realmente estan introduciendo en un formulario es un e-mail, es usando una expresión regular. Por ello os dejo esta que me he encontrado por los foros.
Espero que os sea de ayuda.
PLAIN TEXT
Actionscript:




var emailEx:RegExp = /^&#91;a-z&#93;&#91;\w.-&#93;+@\w&#91;\w.-&#93;+\.&#91;\w.-&#93;*&#91;a-z&#93;&#91;a-z&#93;$/i;


&#160;


if &#40;emailEx.test&#40;email.text&#41;&#41;&#123;


trace &#40;"Esta bien"&#41;;


&#125; 






]]></description>
			<content:encoded><![CDATA[<p>Una manera rapida y sencilla de comprobar si lo que realmente estan introduciendo en un formulario es un e-mail, es usando una <a href="http://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">expresión regular</a>. Por ello os dejo esta que me he encontrado por los foros.</p>
<p>Espero que os sea de ayuda.</p>
<div class="igBar"><span id="lactionscript-10"><a href="#" onclick="javascript:showPlainTxt('actionscript-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-10">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">var</span> emailEx:RegExp = /^<span style="color: #66cc66;">&#91;</span>a-z<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#91;</span>\w.-<span style="color: #66cc66;">&#93;</span>+@\w<span style="color: #66cc66;">&#91;</span>\w.-<span style="color: #66cc66;">&#93;</span>+\.<span style="color: #66cc66;">&#91;</span>\w.-<span style="color: #66cc66;">&#93;</span>*<span style="color: #66cc66;">&#91;</span>a-z<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#91;</span>a-z<span style="color: #66cc66;">&#93;</span>$/i;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>emailEx.<span style="color: #006600;">test</span><span style="color: #66cc66;">&#40;</span>email.<span style="color: #0066CC;">text</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">trace</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"Esta bien"</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/comprobar-e-mail-con-expresiones-regulares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>swapDepths en ActionScript 3</title>
		<link>http://www.hontai.es/2009/05/142/</link>
		<comments>http://www.hontai.es/2009/05/142/#comments</comments>
		<pubDate>Thu, 28 May 2009 09:50:17 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=142</guid>
		<description><![CDATA[Pues eso que como se haría ahora con ActionScript 3 el antiguo swapDepths:
PLAIN TEXT
Actionscript:




parent.setChildIndex&#40;this, parent.numChildren-1&#41;; 






Espero que os sirva de ayuda.
]]></description>
			<content:encoded><![CDATA[<p>Pues eso que como se haría ahora con <a href="http://www.hontai.es/tag/as3/">ActionScript 3</a> el antiguo swapDepths:</p>
<div class="igBar"><span id="lactionscript-12"><a href="#" onclick="javascript:showPlainTxt('actionscript-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-12">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">parent.<span style="color: #006600;">setChildIndex</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>, parent.<span style="color: #006600;">numChildren</span>-<span style="color: #cc66cc;color:#800000;">1</span><span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Espero que os sirva de ayuda.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/05/142/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>autoSize en AS3</title>
		<link>http://www.hontai.es/2009/03/autosize-en-as3/</link>
		<comments>http://www.hontai.es/2009/03/autosize-en-as3/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 16:18:00 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://www.hontai.es/?p=133</guid>
		<description><![CDATA[Con el cambio de as2 (actionscript 2) a as3 son muchos los comandos que han cambiado. Uno de los comandos que eran bastante simples y que ahora ha cambiado es el autoSize  en los campos de texto. Antes simplemente con poner:
PLAIN TEXT
Actionscript:




campodetexto. autoSize = true; 






 

Ya nos funcionaba perfectamente, pero ahora lo correcto sería:

PLAIN [...]]]></description>
			<content:encoded><![CDATA[<p>Con el cambio de as2 (actionscript 2) a as3 son muchos los comandos que han cambiado. Uno de los comandos que eran bastante simples y que ahora ha cambiado es el autoSize  en los campos de texto. Antes simplemente con poner:</p>
<div class="igBar"><span id="lactionscript-15"><a href="#" onclick="javascript:showPlainTxt('actionscript-15'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-15">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">campodetexto. <span style="color: #0066CC;">autoSize</span> = <span style="color: #000000; font-weight: bold;">true</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Tabla normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --></p>
<p><!--[endif]--></p>
<p class="MsoNormal">Ya nos funcionaba perfectamente, pero ahora lo correcto sería:</p>
<p class="MsoNormal">
<div class="igBar"><span id="lactionscript-16"><a href="#" onclick="javascript:showPlainTxt('actionscript-16'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-16">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">campodetexto. <span style="color: #0066CC;">autoSize</span> = TextFieldAutoSize.<span style="color: #0066CC;">LEFT</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p class="MsoNormal">La verdad es que nos lo complican cada vez más, pero bueno todo será acostumbrarse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/03/autosize-en-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
