<?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>RIA212 &#187; RIA</title>
	<atom:link href="http://ria212.com/blog/category/1/feed/" rel="self" type="application/rss+xml" />
	<link>http://ria212.com</link>
	<description>Rich internet Applications en tu idioma</description>
	<lastBuildDate>Sun, 25 Jul 2010 20:55:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Infinitas cÃ¡maras en Flash Player mediante Flex</title>
		<link>http://ria212.com/blog/2010/07/infinitas-camaras-en-flash-player-mediante-flex/</link>
		<comments>http://ria212.com/blog/2010/07/infinitas-camaras-en-flash-player-mediante-flex/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 05:09:41 +0000</pubDate>
		<dc:creator>Juan Manrique</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://ria212.com/?p=436</guid>
		<description><![CDATA[No tengo idea de por quÃ© pero hace unas semanas atras me surgiÃ³ la duda sobre cuÃ¡ntas cÃ¡maras se pueden conectar en una misma aplicaciÃ³n Flex. Sobran los artÃ­culos sobre conexiÃ³n de webcams remotas; de hecho, hace un tiempo atras hice algunas pruebas de streaming de video de una webcam mediante Red5, pero realmente no [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">N</span>o tengo idea de por quÃ© pero hace unas semanas atras me surgiÃ³ la duda sobre cuÃ¡ntas cÃ¡maras se pueden conectar en una misma aplicaciÃ³n Flex. Sobran los artÃ­culos sobre conexiÃ³n de webcams remotas; de hecho, hace un tiempo atras hice algunas pruebas de streaming de video de una webcam mediante Red5, pero realmente no recuerdo haberme cruzado con algÃºn cÃ³digo que conectara varias camaras a la vez <strong>de manera local</strong>.</p>
<p>AsÃ­ que para no quedarme con la duda, comencÃ© a codificar mis intentos y el resultado lo comparto aquÃ­ con ustedes, esperando, como siempre, que pueda ser de ayuda para alguien. Lo interesante de este ejemplo se encuentra en la lÃ­nea  86 del cÃ³digo, ya que al invocar el mÃ©todo <strong>getCamera</strong>, podemos pasar el nÃºmero especÃ­fico de la cÃ¡mara que queremos encender como parÃ¡metro, pero debe indicarse como String y no como un entero:</p>
<div class="codecolorer-container actionscript3 default codecolorer-noborder" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>80<br />81<br />82<br />83<br />84<br />85<br />86<br />87<br />88<br />89<br />90<br />91<br />92<br /></div></td><td><div class="actionscript3 codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #3f5fbf;">/**</span><br />
<span style="color: #3f5fbf;">&nbsp;* Carga la camara correspondiente al indice indicado y la agrega a la lista de camaras</span><br />
<span style="color: #3f5fbf;">&nbsp;* listas.</span><br />
<span style="color: #3f5fbf;">&nbsp;**/</span><br />
<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> cargarCamara<span style="color: #000000;">&#40;</span> indice <span style="color: #000066; font-weight: bold;">:</span> <a href="http://www.google.com/search?q=uint%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:uint.html"><span style="color: #004993;">uint</span></a> <span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
<span style="color: #000000;">&#123;</span><br />
<span style="display:block;background-color:#ffff66">&nbsp; &nbsp; <span style="color: #6699cc; font-weight: bold;">var</span> camara <span style="color: #000066; font-weight: bold;">:</span> <a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a> = <a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">getCamera</span><span style="color: #000000;">&#40;</span> <a href="http://www.google.com/search?q=string%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:string.html"><span style="color: #004993;">String</span></a><span style="color: #000000;">&#40;</span> indice <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br /></span>&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span> camara <span style="color: #000066; font-weight: bold;">!</span>= <span style="color: #0033ff; font-weight: bold;">null</span> <span style="color: #000000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; camara<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span> <a href="http://www.google.com/search?q=activityevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:activityevent.html"><span style="color: #004993;">ActivityEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">ACTIVITY</span><span style="color: #000066; font-weight: bold;">,</span> camaraActivityEventHandler<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #0033ff; font-weight: bold;">false</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #0033ff; font-weight: bold;">true</span> <span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; camarasListas<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">push</span><span style="color: #000000;">&#40;</span> camara <span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
<span style="color: #000000;">&#125;</span></div></td></tr></tbody></table></div>
<p>Ignoro si conectar varias camaras a la vez pueda servir para algo. El Ãºnico uso Ãºtil que se me ocurriÃ³ para esto fue hacer una aplicaciÃ³n AIR que grabara videos desde distintos Ã¡ngulos (Â¿?). Al don <a href="http://twitter.com/rafaelochoa">rafaelochoa</a> se le ocurriÃ³ que podrÃ­a servir para hacer una aplicaciÃ³n de vigilancia, tipo circuito cerrado. Queda de parte de ustedes intentar desarrollar algo Ãºtil. Me gustarÃ­a leer en los comentarios quÃ© se les ocurre, asÃ­ como cualquier duda que tengan.</p>
<p><a href="http://www.linkedin.com/in/juanmanrique">Juan Manrique</a>.</p>
<p><strong>Nota</strong>: Obviamente, no tiene sentido probar el ejemplo si no se dispone de, al menos, 2 camaras.<br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_EjemploCamarasRia212_154626315"
			class="flashmovie"
			width="600"
			height="600">
	<param name="movie" value="http://ria212.com/ejemplos/EjemploCamarasRia212/EjemploCamarasRia212.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://ria212.com/ejemplos/EjemploCamarasRia212/EjemploCamarasRia212.swf"
			name="fm_EjemploCamarasRia212_154626315"
			width="600"
			height="600">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p><a href="http://ria212.com/ejemplos/EjemploCamarasRia212/EjemploCamarasRia212.html">Infinitas cÃ¡maras en Flex</a><br />
<a href="http://ria212.com/ejemplos/EjemploCamarasRia212/srcview/index.html">CÃ³digo</a></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/07/infinitas-camaras-en-flash-player-mediante-flex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MÃºltiples toques, mÃºltiples eventos un solo Flash Player</title>
		<link>http://ria212.com/blog/2010/06/multiples-toques-multiples-eventos-un-solo-flash-player/</link>
		<comments>http://ria212.com/blog/2010/06/multiples-toques-multiples-eventos-un-solo-flash-player/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 15:15:45 +0000</pubDate>
		<dc:creator>rafaelochoa</dc:creator>
				<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/06/arrastres-multiples-con-flash/</guid>
		<description><![CDATA[Video de Lee Brimelow que muestra como Adobe Flash Player 10.1 emula en Windows 7 lo que vimos hace unos aÃ±os con los prototipos de Microsoft Surface.Â El cÃ³digo fue desarrollado por Tim Kukulski parte del equipo de Adobe XD, en este sobrepasan las capacidades del sistema operativo permitiendo eventos de &#8220;Arrastrar y Soltar&#8221;, acercamiento y [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost" style="text-align: justify;"><span class="drop">V</span>ideo de Lee Brimelow que muestra como <a href="http://www.adobe.com/products/flashplayer/">Adobe Flash Player 10.1</a> emula en Windows 7 lo que vimos hace unos aÃ±os con los prototipos de <a href="http://en.wikipedia.org/wiki/Microsoft_Surface">Microsoft Surface</a>.Â El cÃ³digo fue desarrollado por Tim Kukulski parte del equipo de <a href="http://xd.adobe.com">Adobe XD</a>, en este sobrepasan las capacidades del sistema operativo permitiendo eventos de &#8220;Arrastrar y Soltar&#8221;, acercamiento y rotaciÃ³n desde diferentes puntos en la superficie de la pantalla al mismo tiempo.
<p>Â </p>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="225" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=12635040&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="225" src="http://vimeo.com/moogaloop.swf?clip_id=12635040&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>Â </p>
<div>Fuente: <a href="http://theflashblog.com/?p=2118">The Flash Blog</a></div>
<div><a href="http://tinyurl.com/xdgesture">MultiDraggable API </a> usado en el ejemplo</div>
<p>twitter:<a href="http://twitter.com/rafaelochoa">rafaelochoa</a></p>
</div>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/06/multiples-toques-multiples-eventos-un-solo-flash-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InnovaciÃ³n y Flash</title>
		<link>http://ria212.com/blog/2010/06/innovacion-y-flash/</link>
		<comments>http://ria212.com/blog/2010/06/innovacion-y-flash/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 16:41:24 +0000</pubDate>
		<dc:creator>rafaelochoa</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[codigo fuente]]></category>
		<category><![CDATA[ejemplos]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[presentacion]]></category>
		<category><![CDATA[slides]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/06/innovacion-y-flash/</guid>
		<description><![CDATA[A continuaciÃ³n una presentaciÃ³n resumiendo las innovaciones de la plataforma Flash, bastante visual restandole importancia a que este escrita en ingles: Algunos ejemplos: DetecciÃ³n de movimiento Reconocimiento Facial Realidad Aumentada. Reconocimiento de Voz. EmulaciÃ³n del Intel8080 CPU. EmulaciÃ³n deÂ Street Fighter CPU Simulaciones fÃ­sicas (movimientos y ambiente)Â Alchemy C++ 2D Engine Efectos 3D usando Pixel Bender. Minko [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div style="text-align: left;"><span class="drop">A</span> continuaciÃ³n una presentaciÃ³n resumiendo las innovaciones de la plataforma Flash, bastante visual restandole importancia a que este escrita en ingles:</div>
<div style="padding-top: 20px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=webinaleinnovation-100601122407-phpapp02&amp;stripped_title=innovation-and-the-adobe-flash-platform" /><param name="name" value="__sse4379545" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=webinaleinnovation-100601122407-phpapp02&amp;stripped_title=innovation-and-the-adobe-flash-platform" name="__sse4379545" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div style="padding-top: 20px;">Algunos ejemplos:</div>
<div>
<div style="font-family: Georgia, serif; font-size: 14px; color: #4d4d4d; line-height: 24px;">
<div style="border-color: initial; padding-top: 5px; padding-right: 0px; padding-bottom: 12px; padding-left: 0px; border-width: 0px; margin: 0px;">
<ul>
<li><strong><a href="http://riagora.com/pvt_content/innovation/Motion%20detect.zip">DetecciÃ³n de movimiento</a></strong></li>
<li><strong><a href="http://play.blog2t.net/files/black-or-white/" target="_blank">Reconocimiento Facial</a></strong></li>
<li><strong><a href="http://riagora.com/pvt_content/innovation/FLARmichael.zip" target="_blank">Realidad Aumentada</a>.</strong></li>
<li><strong><a href="http://www.bytearray.org/?p=1151" target="_blank">Reconocimiento de Voz</a>.</strong></li>
<li><strong><a href="http://www.bytearray.org/?p=622" target="_blank">EmulaciÃ³n del Intel8080 CPU</a>.</strong></li>
<li><strong><a href="http://www.dotemu.com/en/sf2" target="_blank">EmulaciÃ³n deÂ Street Fighter CPU</a></strong></li>
<li><strong>Simulaciones fÃ­sicas (movimientos y ambiente)Â <a href="http://www.sideroller.com/wck/" target="_blank">Alchemy C++ 2D Engine</a></strong></li>
<li><strong><a href="http://blog.yoz.sk/2010/05/pixel-bender-displacement-map-fakes-3d-effect/" target="_blank">Efectos 3D usando Pixel Bender</a>.</strong></li>
<li><strong><a href="http://demo.minko.in/2" target="_blank">Minko 3D.</a></strong></li>
<li><strong><a href="http://blog.jactionscripters.com/2010/04/26/as3flash10-software-synthesizer-sion-goes-to-version-0-6/" target="_blank">GeneraciÃ³n de Sonido.</a></strong></li>
</ul>
<div>Fuente: <a href="http://www.riagora.com/2010/06/innovation-and-flash/" target="_blank">RIAgora</a></div>
</div>
</div>
</div>
<p>twitter:<a href="http://twitter.com/rafaelochoa">rafaelochoa</a></p>
</div>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/06/innovacion-y-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Realidades de Flash Player</title>
		<link>http://ria212.com/blog/2010/05/realidades-de-flash-player/</link>
		<comments>http://ria212.com/blog/2010/05/realidades-de-flash-player/#comments</comments>
		<pubDate>Mon, 31 May 2010 22:32:40 +0000</pubDate>
		<dc:creator>rafaelochoa</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Player]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/05/realidades-de-flash-player/</guid>
		<description><![CDATA[Buscando algo de informaciÃ³n para un componente que estoy desarrollando, me consegui con estas cifras y quise compartirlas: 98% de las computadoras conectadas a Internet tiene Flash Player. 85% del Top 100 de sitios web usa Flash. 75% del video distribuido en internet usa Flash Player. 70% de los juegos de Internet usan Flash Player. [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost"><span class="drop">B</span>uscando algo de informaciÃ³n para un componente que estoy desarrollando, me consegui con estas cifras y quise compartirlas:</p>
<ul>
<li>98% de las computadoras conectadas a Internet tiene Flash Player.</li>
<li>85% del Top 100 de sitios web usa Flash.</li>
<li>75% del video distribuido en internet usa Flash Player.</li>
<li>70% de los juegos de Internet usan Flash Player.</li>
<li>3.5 millones de desarrolladores apoyan la plataforma Flash.</li>
<li>19/20 de las productoras mas grandes de dispositivos moviles estan interesadas en colocar Flash Player en sus dispositivos.</li>
</ul>
<div>Fuente: <a href="http://www.adobe.com/choice/flash.html" target="_blank">Adobe</a></div>
<p>twitter:<a href="http://twitter.com/rafaelochoa">rafaelochoa</a></p>
</div>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/05/realidades-de-flash-player/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Imagenes como ItemRenderers en grÃ¡ficos</title>
		<link>http://ria212.com/blog/2010/05/imagenes-como-itemrenderers-en-graficos/</link>
		<comments>http://ria212.com/blog/2010/05/imagenes-como-itemrenderers-en-graficos/#comments</comments>
		<pubDate>Tue, 25 May 2010 01:47:21 +0000</pubDate>
		<dc:creator>Juan Manrique</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Componentes]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://ria212.com/?p=363</guid>
		<description><![CDATA[Hace unos dÃ­as fuÃ­ contratado para implementar un componente de grÃ¡ficas bastante particular y configurable (que espero poder mostrarles pronto) por lo que me vÃ­ en la necesidad de codificar unos cuantos subcomponentes elementales, herederos de la clase ChartElement, para poder lograr los detalles requeridos. Uno de estos subcomponentes era un Series (BarSeries y ColumnSeries) [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">H</span>ace unos dÃ­as fuÃ­ contratado para implementar un componente de grÃ¡ficas bastante particular y configurable (que espero poder mostrarles pronto) por lo que me vÃ­ en la necesidad de codificar unos cuantos subcomponentes elementales, herederos de la clase ChartElement, para poder lograr los detalles requeridos. Uno de estos subcomponentes era un Series (BarSeries y ColumnSeries) que debÃ­a permitir el cambio de color de cada uno de sus items, independientemente de que pertenecieran al mismo Series.<span id="more-363"></span> No resulto dificil encontrar las propiedades que debÃ­a modificar para cumplir con este requirimiento. Sin embargo, tuve que hacer unas cuantas lecturas para poder implementar el ItemRenderer de manera adecuada. En unas de estas lecturas me topÃ© con <a href="http://sangflex.wordpress.com/2009/09/11/charts-and-item-renderers/">un cÃ³digo</a> que me resultÃ³ sumamente interesante, ya que hace uso de imagenes como ItemRenderers o ItemEditors de Series en Charts, lo que permite crear grÃ¡ficos muy llamativos y de codificaciÃ³n muy sencilla cuyas barras, columnas, tortas, puntos y otros, sean imagenes de cualquier tipo.</p>
<p>Como de costumbre, hice un ejemplito sencillo en el que se aprecia el cÃ³digo necesario para utilizar imÃ¡genes como ItemRenderers o ItemEditors de Series de grÃ¡ficos en Flex 3. Las dudas y comentarios, siempre bien recibidos.<a href="http://www.linkedin.com/in/juanmanrique">Juan Manrique</a>.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Ria212ChartImagenItemRenderer_239225942"
			class="flashmovie"
			width="600"
			height="600">
	<param name="movie" value="http://ria212.com/ejemplos/EjemploChartImagenItemRenderer/Ria212ChartImagenItemRenderer.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://ria212.com/ejemplos/EjemploChartImagenItemRenderer/Ria212ChartImagenItemRenderer.swf"
			name="fm_Ria212ChartImagenItemRenderer_239225942"
			width="600"
			height="600">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p><a href="http://ria212.com/ejemplos/EjemploChartImagenItemRenderer/Ria212ChartImagenItemRenderer.html">Chart con imagenes en Series</a><br />
<a href="http://ria212.com/ejemplos/EjemploChartImagenItemRenderer/srcview/index.html">CÃ³digo</a><br />
Las imÃ¡genes de los trenes del Metro son de <a href="http://trenesvenezolanos.com/ferromodelismo/index.html">aquÃ­</a>.</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/05/imagenes-como-itemrenderers-en-graficos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prueba de velocidad en Android: Flash Vs. HTML5</title>
		<link>http://ria212.com/blog/2010/05/prueba-de-velocidad-en-andorid-flash-vs-html5/</link>
		<comments>http://ria212.com/blog/2010/05/prueba-de-velocidad-en-andorid-flash-vs-html5/#comments</comments>
		<pubDate>Wed, 05 May 2010 22:16:14 +0000</pubDate>
		<dc:creator>rafaelochoa</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/05/prueba-de-velocidad-en-andorid-flash-vs-html5/</guid>
		<description><![CDATA[Para seguir con la discusiÃ³n respecto a ambas tecnologÃ­as, vemos el video mostrado en el anÃ¡lisis de themaninblue.com acerca del rendimiento de HTML5 con respecto a Flash en los dispositivos mÃ³viles. twitter:rafaelochoa Copyright &#169; 2008 This feed is for personal, non-commercial use only. The use of this feed on other websites breaches copyright. If this [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div><span class="drop">P</span>ara seguir con la discusiÃ³n respecto a ambas tecnologÃ­as, vemos el video mostrado en el <a href="goog_1071024718">a</a><a href="goog_1071024718">nÃ¡lisis</a><a href="goog_1071024718"> </a><a href="goog_1071024718">de</a><a href="goog_1071024718"> </a><a href="goog_1071024718">themaninblue</a><a href="http://themaninblue.com/writing/perspective/2010/03/22/">.com</a> acerca del rendimiento de HTML5 con respecto a Flash en los dispositivos mÃ³viles.</div>
<div>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/DUWo19BcC7s&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="300" src="http://www.youtube.com/v/DUWo19BcC7s&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>twitter:<a href="http://twitter.com/rafaelochoa">rafaelochoa</a></p>
</div>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/05/prueba-de-velocidad-en-andorid-flash-vs-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flash.utils.setTimeout: Configurar un tiempo de espera</title>
		<link>http://ria212.com/blog/2010/05/flash-utils-settimeout-configurar-un-tiempo-de-espera/</link>
		<comments>http://ria212.com/blog/2010/05/flash-utils-settimeout-configurar-un-tiempo-de-espera/#comments</comments>
		<pubDate>Mon, 03 May 2010 19:45:02 +0000</pubDate>
		<dc:creator>pedrovarela</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Componentes]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/05/flash-utils-settimeout-configurar-un-tiempo-de-espera/</guid>
		<description><![CDATA[Â¿SabÃ­an que se puede disparar eventos con tiempo de espera determinado?. Pues yo no, por eso lo posteo. El paquete flash.utils tiene un mÃ©todo llamado setTimeout, Â¿QuÃ© hace? sencillamente espera tantos milisegundos para lanzar el evento. Ãštil cuando necesitas esperar un tiempito a que se actualice tu informaciÃ³n en la BD y leerla en seguida. [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">Â</span>¿SabÃ­an que se puede disparar eventos con tiempo de espera determinado?. Pues yo no, <img src='http://ria212.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  por eso lo posteo. El paquete <strong><a href="http://www.adobe.com/livedocs/flex/2/langref/flash/utils/package-detail.html">flash.utils</a></strong> tiene un mÃ©todo llamado <b><a href="http://www.adobe.com/livedocs/flex/2/langref/flash/utils/package.html#setTimeout%28%29">setTimeout</a></b>, Â¿QuÃ© hace? sencillamente espera tantos milisegundos para lanzar el evento. Ãštil cuando necesitas esperar un tiempito a que se actualice tu informaciÃ³n en la BD y leerla en seguida. Me ocurrÃ­a que actualizaba la informaciÃ³n de un estudiante, e inmediatamente despuÃ©s querÃ­a obtener la informaciÃ³n actualizada, y por alguna razÃ³n me traÃ­a la informaciÃ³n vieja, asÃ­ que utilizando el setTimeout puedo esperar uno o dos segundos y ahÃ­ si pedir la informaciÃ³n nuevamente. </p>
<p>En la magia del actionscript es esto:</p>
<pre>

flash.utils.setTimeout(function updateStudent():void{
  &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; dispatchEvent(new StudentEvent(StudentEvent.UPDATE_STUDENT))&#160;&#160;&#160;&#160; },1000);
</pre>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/05/flash-utils-settimeout-configurar-un-tiempo-de-espera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debemos olvidarnos de aplicaciones de Flash en el iPhone</title>
		<link>http://ria212.com/blog/2010/04/debemos-olvidarnos-de-aplicaciones-de-flash-en-el-iphone/</link>
		<comments>http://ria212.com/blog/2010/04/debemos-olvidarnos-de-aplicaciones-de-flash-en-el-iphone/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 03:39:49 +0000</pubDate>
		<dc:creator>rafaelochoa</dc:creator>
				<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/04/debemos-olvidarnos-de-aplicaciones-de-flash-en-el-iphone/</guid>
		<description><![CDATA[Por un cambio en el acuerdo de desarrolladores de iPhone Apple elimina toda posibilidad para aplicaciones creadas en un lenguaje distinto al documentado en su kit de desarrollo.Â Dejando sin sentido al traductor de Adobe que transforma codigo Actionscript 3 en codigo capaz de correr en el iPhone OS (iPhone, iPod Touch y iPad). Dicho traductor [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div>
<p><a href="http://ria212.com/wp-content/uploads/2010/04/broken-iphone-copy1.jpg"></a></p>
<div id="attachment_338" class="wp-caption alignleft" style="width: 197px"><p class="wp-caption-text">&quot;iPhone sin Flash&quot;</p></div><a href="http://posterous.com/getfile/files.posterous.com/rafaelochoa/Jks8dwWUmsfH8Ydz23wh7oA9ydqY7dtAdReGUGgXOXX8JCEgjRF9Np0ZI7fQ/broken-iphone_copy.jpg"><img class="size-medium wp-image-338 " style="margin: 10px;" title="Broken iPhone" src="http://posterous.com/getfile/files.posterous.com/rafaelochoa/Jks8dwWUmsfH8Ydz23wh7oA9ydqY7dtAdReGUGgXOXX8JCEgjRF9Np0ZI7fQ/broken-iphone_copy.jpg" alt="" width="187" height="300" /></a><span class="drop">[</span>/caption]
</div>
<p>Por un cambio en el acuerdo de desarrolladores de iPhone Apple elimina toda posibilidad para aplicaciones creadas en un lenguaje distinto al documentado en su kit de desarrollo.Â Dejando sin sentido al traductor de Adobe que transforma codigo Actionscript 3 en codigo capaz de correr en el iPhone OS (iPhone, iPod Touch y iPad). Dicho traductor estabaÂ generando gran espectativa en los desarrolladores de la plataforma de Adobe al tener la posibilidad de entrar App Store con aplicaciones previas o desarrolladas para varios dispositivos.</p>
<div>
<p>Hace unos dÃ­as en mi cuenta deÂ <a href="http://twitter.com/rafaelochoa/status/12230743542" target="_blank">Twitter</a> comentÃ© sobre esta noticia, hasta que algÃºn integrante de Adobe no hablarÃ¡ al respecto no quise hacer referencia en nuestro Blog. Los primeros en hablar fueronÂ <a href="http://www.mikechambers.com/blog/2010/04/20/on-adobe-flash-cs5-and-iphone-applications/" target="_blank">Mike Chambers</a> yÂ <a href="http://technoracle.blogspot.com/2010/04/my-open-letter-to-apple.html" target="_blank">Duane Nickull</a>.</p>
<div>
<p>Ambos reflejan el descontento de los desarrolladores por las nuevas politicas de Apple, empresa que resulta cada vez mas controladora en sus plataformas. Personalmente esto me parece una simple estrategia para proteger el gran negocio que ha sido el App Store. En un comienzo Apple rechazaba Flash PlayerÂ refugiandose en la idea de protecciÃ³n a los usuarios del iPhone OS por los problemas de rendimiento, seguridad y consumo de baterÃ­a. Si los dispositivos moviles de Apple son superiores a los de Android y Palm Â¿porque estas compaÃ±Ã­as permiten su uso sin ninguna restricciÃ³n?.</p>
</div>
</div>
<p><span id="more-337"></span>En el <a href="http://ria212.com/blog/2009/12/latin-flash-tour-bogota-resumen/" target="_blank">Latin Flash Tour</a> Lee Brimelow hablÃ³ sobre la optimizaciÃ³n de cÃ³digo de Flash Player 10.1, que da como resultado un mejor uso del procesador y menor consumo de bateria. Durante los meses siguientes Blogs relacionados con tecnologia y desarrollo Web han estado mostrando la idea de una experiencia Web completa en el bolsillo (Juegos, videos, aplicaciones, Etc).</p>
<p>Apple desde hace unos meses muestra un gran interes hacia HTML5, tecnologia que esta muy lejos de ser aceptada por todos los browsers( verifica tuÂ <a href="http://html5test.com/" target="_blank">compatibilidad</a>) y que no tiene la madurez que la plataforma de Flash ha obtenido a lo largo de los aÃ±os. Siendo bastante comodo para la compaÃ±ia de Cupertino, el usuario final sin saberlo siempre preferirÃ¡ una aplicaciÃ³n creada usando el SDK del iPhone OS porque saca el mayor provecho del dispositivo.</p>
<p>Lo que tenemos frente a nosotros es una gran demostraciÃ³n que la idea de una plataforma cerrada vuelve a rondar a una compaÃ±ia que alguna vez quebrÃ³ por politicas muy parecidas. Las ventas de Â dispositivos donde funcione Flash Player, la variedad, calidad y tiempo de desarrollo de las aplicaciones realizadas en Actionscript 3 quizas hagan que Apple reconsidere estas decisiones. Mientras la plataforma Flash, Android OS, Palm OS, Screen Project y Adobe AIR nos ofrecen grandes posibilidades como desarrolladores.</p>
<blockquote class="gmail_quote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-width: 1px; border-left-color: #cccccc; border-left-style: solid; padding-left: 1ex;">
<div>
<div>
<div>Fragmento de las politicas de uso del Kit de desarrollo de iPhone OS:</div>
<blockquote><p>&#8220;3.3.1 &#8211; Las solicitudes sÃ³lo podrÃ¡n utilizar las API documentados en la forma prescrita por Apple y no debe usar o llamar a cualquier API privadas.Â Las solicitudes deben haber sido escritas originariamente en Objective-C, C, C + + o JavaScript como ejecutado por el motor iPhone OS WebKit, y sÃ³lo el cÃ³digo escrito en C, C + + y Objective-C puede compilar y enlazan directamente contra las API documentados (por ejemplo,Â Las aplicaciones que tienen enlaces a las API documentados a travÃ©s de un intermediario o de traducciÃ³n o una herramienta de compatibilidad de nivel superior estÃ¡n prohibidas).&#8221;</p></blockquote>
</div>
</div>
<p>Articulo(ingles): &#8220;<a href="http://elromdesign.com/blog/2010/04/24/apple-has-always-been-a-closed-ecosystem-so-why-are-we-surprised/" target="_blank">Apple siempre ha sido un ecosistema cerrado, Â¿Por que nos sorprendemos</a>?&#8221;</p>
<p>twitter:<a href="http://twitter.com/rafaelochoa">rafaelochoa</a></p></blockquote>
</div>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/04/debemos-olvidarnos-de-aplicaciones-de-flash-en-el-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Los desaf&#237;os del desarrollo de RIA y c&#243;mo superarlos</title>
		<link>http://ria212.com/blog/2010/04/los-desafos-del-desarrollo-de-ria-y-cmo-superarlos/</link>
		<comments>http://ria212.com/blog/2010/04/los-desafos-del-desarrollo-de-ria-y-cmo-superarlos/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 18:27:00 +0000</pubDate>
		<dc:creator>pedrovarela</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[ria]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/04/los-desafos-del-desarrollo-de-ria-y-cmo-superarlos/</guid>
		<description><![CDATA[He encontrado este documento que me pareciÃ³ interesante sobre los beneficios que trae el desarrollo de RIA de manera Empresarial, o Enterprise RIA el paper fue escrito por Avigdor Luttinger de la Empresa Magic Software de Argentina. Saludos y espero les ayude a ampliar un poco mÃ¡s sobre el mundo de las RIA Los desafÃ­os [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop">H</span>e encontrado este documento que me pareciÃ³ interesante sobre los beneficios que trae el desarrollo de RIA de manera Empresarial, o <a href="http://www.scribd.com/doc/19032104/Enterprise-RIA-Deployment-Examples">Enterprise RIA</a> el paper fue escrito por Avigdor Luttinger de la Empresa <a href="http://www.magicsoftware.com.ar/">Magic Software</a> de Argentina.<br />
Saludos y espero les ayude a ampliar un poco mÃ¡s sobre el mundo de las RIA</p>
<p><a title="View Los desafÃ­os del desarrollo de Aplicaciones Ricas para Internet (RIA) y cÃ³mo superarlos on Scribd" href="http://www.scribd.com/doc/29985166/Los-desafios-del-desarrollo-de-Aplicaciones-Ricas-para-Internet-RIA-y-como-superarlos">Los desafÃ­os del desarrollo de Aplicaciones Ricas para Internet (RIA) y cÃ³mo superarlos</a> </p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/04/los-desafos-del-desarrollo-de-ria-y-cmo-superarlos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe AIR corriendo en el iPad</title>
		<link>http://ria212.com/blog/2010/04/adobe-air-corriendo-en-el-ipad/</link>
		<comments>http://ria212.com/blog/2010/04/adobe-air-corriendo-en-el-ipad/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 03:45:48 +0000</pubDate>
		<dc:creator>rafaelochoa</dc:creator>
				<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://ria212.com/blog/2010/04/adobe-air-corriendo-en-el-ipad/</guid>
		<description><![CDATA[&#60;/object> twitter:rafaelochoa Copyright &#169; 2008 This feed is for personal, non-commercial use only. The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: )]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><object height="385" width="480"><param name="movie" value="http://www.youtube.com/v/zRWnZdp5ywg&#038;hl=en_US&#038;fs=1&#038;" /></param><param name="allowFullScreen" value="true" /></param><param name="allowscriptaccess" value="always" /></param><embed allowfullscreen="true" src="http://www.youtube.com/v/zRWnZdp5ywg&#038;hl=en_US&#038;fs=1&#038;" allowscriptaccess="always" type="application/x-shockwave-flash" height="385" width="480"></embed><span class="drop">&</span>lt;/object></object>
<p>  twitter:<a href="http://twitter.com/rafaelochoa">rafaelochoa</a>  </p>
</div>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://ria212.com/blog/2010/04/adobe-air-corriendo-en-el-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
