<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>JuniHH+Flash</title>
	<atom:link href="http://juniflash.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://juniflash.wordpress.com</link>
	<description>Puro Flash - Ejemplos, tutoriales, ActionScript y novedades</description>
	<pubDate>Sat, 05 Jul 2008 23:58:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>es</language>
			<item>
		<title>Cambiar color a un MovieClip con ActionScript</title>
		<link>http://juniflash.wordpress.com/2007/04/11/cambiar-color-a-un-movieclip-con-actionscript/</link>
		<comments>http://juniflash.wordpress.com/2007/04/11/cambiar-color-a-un-movieclip-con-actionscript/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 14:39:34 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Puro codigo]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/04/11/cambiar-color-a-un-movieclip-con-actionscript/</guid>
		<description><![CDATA[La clase Color de ActionScript es una de las mas faciles y utiles cuando necesitamos cambiar el color a un link u objeto convertido en MovieClip.
Es tan simple como declararlo y aplicarlo. Veamos esta funcion de solo 3 lineas:


MovieClip.prototype.aplicarColorMC = function(colorMC:Number) {
	var newColMC:Color = new Color(this);
	newColMC.setRGB(colorMC);
};

Simple verdad ???. En ella declaro una variable denominada &#8220;newColMC&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>La clase <strong>Color</strong> de ActionScript es una de las mas faciles y utiles cuando necesitamos cambiar el color a un link u objeto convertido en MovieClip.</p>
<p>Es tan simple como declararlo y aplicarlo. Veamos esta funcion de solo 3 lineas:</p>
<pre name="code" class="jscript">

MovieClip.prototype.aplicarColorMC = function(colorMC:Number) {
	var newColMC:Color = new Color(this);
	newColMC.setRGB(colorMC);
};
</pre>
<p>Simple verdad ???. En ella declaro una variable denominada <strong>&#8220;newColMC&#8221;</strong> a la que le aplico la clase Color. Esta a su vez me exije que especifique cual MovieClip debe afectar y le digo &#8220;this&#8221;. Como esa funcion es un prototype (estos funcionan como subclases), el objeto al que se lo aplico se convierte en &#8220;este objeto&#8221; (this).</p>
<p>Luego le digo que le aplique el color detallado en el parametro &#8220;colorMC&#8221; a traves de la subclase &#8220;setRGB&#8221;.</p>
<p>Finalmente lo pueden aplicar de la siguiente forma en sus trabajos:</p>
<pre name="code" class="jscript">

objetoMC.onRollOver = function() {
	this.aplicarColorMC(0xFF0000);
};
objetoMC.onRollOut = function() {
	this.aplicarColorMC(0x000000);
};
</pre>
<p>- <a href="http://img377.imageshack.us/my.php?image=cambiarcolormcec5.swf"><strong>Ver ejemplo</strong></a></p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/aplicar" rel="tag">aplicar</a>, <a href="http://www.blogalaxia.com/tags/color" rel="tag">color</a>, <a href="http://www.blogalaxia.com/tags/setrgb" rel="tag">setrgb</a>, <a href="http://www.blogalaxia.com/tags/movieclip" rel="tag">movieclip</a>, <a href="http://www.blogalaxia.com/tags/flash" rel="tag">flash</a><br />
<img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/aplicar" rel="tag">aplicar</a>, <a href="http://technorati.com/tag/color" rel="tag">color</a>, <a href="http://technorati.com/tag/setrgb" rel="tag">setrgb</a>, <a href="http://technorati.com/tag/movieclip" rel="tag">movieclip</a>, <a href="http://technorati.com/tag/flash" rel="tag">flash</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=17&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/04/11/cambiar-color-a-un-movieclip-con-actionscript/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Precarga de un SWF</title>
		<link>http://juniflash.wordpress.com/2007/04/11/precarga-de-un-swf/</link>
		<comments>http://juniflash.wordpress.com/2007/04/11/precarga-de-un-swf/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 14:00:19 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Puro codigo]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/04/11/precarga-de-un-swf/</guid>
		<description><![CDATA[Es usual ver en los foros dedicados a Flash preguntas de este tipo: Como cargo un SWF ???, Como hago una precarga ???, Ayudaaaaaaa, etc.
Pues como una forma de simplicar el asunto, pongo a disposicion de quienes lo necesite este codigo. Su desempeño es perfecto (lo hice yo, es logico que lo sea) y hace [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Es usual ver en los foros dedicados a Flash preguntas de este tipo: Como cargo un SWF ???, Como hago una precarga ???, Ayudaaaaaaa, etc.</p>
<p>Pues como una forma de simplicar el asunto, pongo a disposicion de quienes lo necesite este codigo. Su desempeño es perfecto (lo hice yo, es logico que lo sea) y hace dos trabajos en uno. Crea una barra de precarga al que podemos configurar sus colores para adaptarlo al diseño del sitio o animacion, como tambien calcular el procentaje cargado del mismo para entonces iniciar la animacion.</p>
<p>Solo pondre aqui el codigo completo, pero dentro del FLA ejemplo encontraran comentarios detallados de como trabaja cada cosa. Espero les guste y funcione.</p>
<p><strong> CODIGO FUENTE DE LA FUNCION:</strong></p>
<pre name="code" class="jscript">

MovieClip.prototype.insertBarLoad = function(barColor:Number, barAncho:Number, barAlto:Number, bordeColor:Number, bordeAncho:Number) {

	MovieClip.prototype.crearObj = function(objColor:Number, objAncho:Number, objAlto:Number) {
		with (this) {
			beginFill(objColor);
			moveTo(0, 0);
			lineTo(objAncho, 0);
			lineTo(objAncho, objAlto);
			lineTo(0, objAlto);
			lineTo(0, 0);
			endFill();
		}
	};

	var bordeBlanco:MovieClip = this.createEmptyMovieClip("fondoBar", this.getNextHighestDepth());
	bordeBlanco.crearObj(bordeColor, barAncho + bordeAncho, barAlto + bordeAncho);

	var barLoaded:MovieClip = this.createEmptyMovieClip("barLoaded", this.getNextHighestDepth());
	barLoaded.crearObj(barColor, barAncho, barAlto);
	barLoaded._x = barLoaded._y = bordeAncho / 2;
};

var barraRoot:MovieClip = _root.createEmptyMovieClip("barraRoot", _root.getNextHighestDepth());
with (barraRoot) {
	insertBarLoad(0xffffff, 60, 2, 0x93938F, 3.5);
	_x = (Stage.width / 2) - (_width / 2);
	_y = (Stage.height / 2) - (_height / 2);
	barLoaded._xscale = 0;
}

onEnterFrame = function () {
	var introLoad:Number = Math.floor(getBytesLoaded() / getBytesTotal() * 100);
	barraRoot.barLoaded._xscale = introLoad;
	if (introLoad &gt;= 100) {
		delete this.onEnterFrame;
		barraRoot.removeMovieClip();
		play();
	}
};
</pre>
<p>Si tienen preguntas adicionales, primero vean el FLA adjunto.</p>
<p>- <a href="http://www.box.net/index.php?rm=box_download_shared_file&amp;file_id=f_55208952&amp;shared_name=05ulzhdl04"><strong>Descargar FLA</strong></a><br />
- <a href="http://img412.imageshack.us/my.php?image=precargacc4.swf"><strong>Ver el ejemplo</strong></a></p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/precarga" rel="tag">precarga</a>, <a href="http://www.blogalaxia.com/tags/preload" rel="tag">preload</a>, <a href="http://www.blogalaxia.com/tags/flash" rel="tag">flash</a>, <a href="http://www.blogalaxia.com/tags/swf" rel="tag">swf</a>, <a href="http://www.blogalaxia.com/tags/movieclip" rel="tag">movieclip</a><br />
<img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/precarga" rel="tag">precarga</a>, <a href="http://technorati.com/tag/preload" rel="tag">preload</a>, <a href="http://technorati.com/tag/flash" rel="tag">flash</a>, <a href="http://technorati.com/tag/swf" rel="tag">swf</a>, <a href="http://technorati.com/tag/movieclip" rel="tag">movieclip</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=15&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/04/11/precarga-de-un-swf/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe Flash CS3 esta&#8230; genial !!!</title>
		<link>http://juniflash.wordpress.com/2007/04/09/adobe-flash-cs3-esta-genial/</link>
		<comments>http://juniflash.wordpress.com/2007/04/09/adobe-flash-cs3-esta-genial/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 13:09:53 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Novedades]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/04/09/adobe-flash-cs3-esta-genial/</guid>
		<description><![CDATA[Siempre he considerado a Adobe como una de las empresas de desarrollo de software mas avanzada en su tipo (antes que ella esta Apple), esta opinion porque cada vez que hacen actualizaciones a cualquiera de sus softwares, siempre son nuevas herramientas u opciones de vanguardia.
Un ejemplo a lo que digo es lo facil que sera [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Siempre he considerado a <b>Adobe</b> como una de las empresas de desarrollo de software mas avanzada en su tipo (antes que ella esta <b>Apple</b>), esta opinion porque cada vez que hacen actualizaciones a cualquiera de sus softwares, siempre son nuevas herramientas u opciones de vanguardia.</p>
<p>Un ejemplo a lo que digo es lo facil que sera en lo adelante el uso de sus herramientas y la integracion con AS3, tal el caso de que una animacion hecha via timeline podra ser convertida automaticamente a AS3 (ver imagen).</p>
<p><img src="http://farm1.static.flickr.com/240/452302145_7c3953ae68.jpg?v=0" /></p>
<p>Para conocer sus nuevas funcionalidades les invito a visitar <a href="http://www.adobe.com/es/products/flash/features">esta pagina</a>, donde encontran informacion general sobre esta nueva version y un video-tour de introduccion. Realmente me encanta !!!.</p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/adobe" rel="tag">adobe</a>, <a href="http://www.blogalaxia.com/tags/flash" rel="tag">flash</a>, <a href="http://www.blogalaxia.com/tags/cs3" rel="tag">cs3</a>, <a href="http://www.blogalaxia.com/tags/features" rel="tag">features</a>, <a href="http://www.blogalaxia.com/tags/caracteristicas" rel="tag">caracteristicas</a><br /><img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/adobe" rel="tag">adobe</a>, <a href="http://technorati.com/tag/flash" rel="tag">flash</a>, <a href="http://technorati.com/tag/cs3" rel="tag">cs3</a>, <a href="http://technorati.com/tag/features" rel="tag">features</a>, <a href="http://technorati.com/tag/caracteristicas" rel="tag">caracteristicas</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=13&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/04/09/adobe-flash-cs3-esta-genial/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/240/452302145_7c3953ae68.jpg?v=0" medium="image" />

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Los nuevos Creative Collection de Adobe</title>
		<link>http://juniflash.wordpress.com/2007/03/27/los-nuevos-creative-collection-de-adobe/</link>
		<comments>http://juniflash.wordpress.com/2007/03/27/los-nuevos-creative-collection-de-adobe/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 14:24:01 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Novedades]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/03/27/los-nuevos-creative-collection-de-adobe/</guid>
		<description><![CDATA[Gizmodo publico un articulo interesante donde presenta los nuevos componentes y sus precios del Adobe Creative Collection, que obtuvieron a traves de Amazon y en el que tambien vemos las nuevas imagenes de los empaques de los programas. A mi particularmente me encantan los nuevos empaques, aunque odio los nuevos iconos de la linea.
Los nuevos [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><img src="http://farm1.static.flickr.com/150/436415899_58dd2bf326_m.jpg" align="right" />Gizmodo</strong> publico <a href="http://gizmodo.com/gadgets/software/adobe-cs3-pricing-leaked-by-amazon-247017.php"><strong>un articulo</strong></a> interesante donde presenta los nuevos componentes y sus precios del <strong>Adobe Creative Collection</strong>, que obtuvieron a traves de Amazon y en el que tambien vemos las nuevas imagenes de los empaques de los programas. A mi particularmente me encantan los nuevos empaques, aunque odio los <a href="http://veerle.duoh.com/blog/comments/the_new_adobe_icons_and_branding"><strong>nuevos iconos</strong></a> de la linea.</p>
<p>Los nuevos paquetes ahora se llamaran: Adobe Creative Suite CS3 <strong>Web Premium ($1,599.00)</strong>, Adobe Creative Suite CS3 <strong>Master Collection ($2,499.00)</strong>, Adobe Creative Suite CS3 <strong>Production Premium ($1,199.00)</strong> y Adobe Creative Suite CS3 <strong>Design Premium ($1,599.00)</strong>.</p>
<p>Vienen en paquetes completos, pero tambien se pueden comprar los programas individuales. Los paquetes estaran disponibles a partir del 20 de abril y si queremos comprar las aplicaciones individuales habra que esperar hasta el 1ero. de julio.</p>
<p>Otra cosa interesante que note y que me preocupa es que aparentemente van a dejar a un lado a <strong>Freehand</strong> y le daran prioridad a <strong>Illustrator</strong>, o en su defecto le integraran las opciones que hacian a Freehand el mejor programa de Ilustracion y diseño de los productos en su tipo.</p>
<p>Por ningun lado se ve a Freehand en ese listado y es realmente una pena que sean asi las cosas. Illustrator es un programa muy bueno, de hecho espectacular en lo que que a ilustracion digital respecta, pero en cuanto a diseño para maquetacion lo considero limitado, comenzando por su defecto de no poder agregar multiples paginas en un solo archivo.</p>
<p>Pero ni modo, ellos hacen lo que consideran apropiado.</p>
<p>Fuente: <a href="http://gizmodo.com/gadgets/software/adobe-cs3-pricing-leaked-by-amazon-247017.php"><strong>Gizmodo</strong></a></p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/adobe" rel="tag">adobe</a>, <a href="http://www.blogalaxia.com/tags/creative" rel="tag">creative</a>, <a href="http://www.blogalaxia.com/tags/collection" rel="tag">collection</a>, <a href="http://www.blogalaxia.com/tags/photoshop" rel="tag">photoshop</a>, <a href="http://www.blogalaxia.com/tags/illustrator" rel="tag">illustrator</a>, <a href="http://www.blogalaxia.com/tags/flash" rel="tag">flash</a>, <a href="http://www.blogalaxia.com/tags/fireworks" rel="tag">fireworks</a><br />
<img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/adobe" rel="tag">adobe</a>, <a href="http://technorati.com/tag/creative" rel="tag">creative</a>, <a href="http://technorati.com/tag/collection" rel="tag">collection</a>, <a href="http://technorati.com/tag/photoshop" rel="tag">photoshop</a>, <a href="http://technorati.com/tag/illustrator" rel="tag">illustrator</a>, <a href="http://technorati.com/tag/flash" rel="tag">flash</a>, <a href="http://technorati.com/tag/fireworks" rel="tag">fireworks</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=11&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/03/27/los-nuevos-creative-collection-de-adobe/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/150/436415899_58dd2bf326_m.jpg" medium="image" />

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Efecto de temblor en MovieClips</title>
		<link>http://juniflash.wordpress.com/2007/03/26/efecto-de-temblor-en-movieclips/</link>
		<comments>http://juniflash.wordpress.com/2007/03/26/efecto-de-temblor-en-movieclips/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 01:36:39 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Ejemplos]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/03/26/efecto-de-temblor-en-movieclips/</guid>
		<description><![CDATA[Podemos lograr un efecto de temblor continuo a traves de ActionScript. Para eso necesitamos que el objeto a afectar con el efecto deba ser convertido a MovieClip o clip de pelicula. Veamos:
CODIGO FUENTE DE LA FUNCION:
Copiamos el siguiente codigo y lo pegamos en el primer frame de la pelicula.
MovieClip.prototype.temblarMC = function(distanciaSaltos:Number) {
//
var thisMC:MovieClip = this;
//
//
function [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Podemos lograr un efecto de temblor continuo a traves de ActionScript. Para eso necesitamos que el objeto a afectar con el efecto deba ser convertido a MovieClip o clip de pelicula. Veamos:</p>
<p><strong>CODIGO FUENTE DE LA FUNCION:</strong></p>
<p>Copiamos el siguiente codigo y lo pegamos en el primer frame de la pelicula.</p>
<blockquote><p>MovieClip.prototype.temblarMC = function(distanciaSaltos:Number) {<br />
//<br />
var thisMC:MovieClip = this;<br />
//<br />
//<br />
function randomMinMax(min:Number, max:Number):Number {<br />
return Math.floor(random(max - min + 1)) + min;<br />
}<br />
//<br />
//<br />
var num:Number = distanciaSaltos;<br />
//<br />
var iniX:Number = thisMC._x;<br />
var iniY:Number = thisMC._y;<br />
//<br />
var posX:Number = randomMinMax(iniX - num, iniX + num);<br />
var posY:Number = randomMinMax(iniY - num, iniY + num);<br />
var pausa:Number = randomMinMax(10, 40);<br />
//<br />
thisMC._x = posX;<br />
thisMC._y = posY;<br />
//<br />
//<br />
clearInterval(thisMC.moveIt);<br />
thisMC.moveIt = setInterval(function () {<br />
//<br />
thisMC._x = posX;<br />
thisMC._y = posY;<br />
//<br />
posX = randomMinMax(iniX - num, iniX + num);<br />
posY = randomMinMax(iniY - num, iniY + num);<br />
//<br />
}, pausa);<br />
};</p></blockquote>
<p><strong>PARAMETROS DE LA FUNCION:</strong></p>
<p><strong>distanciaSaltos:</strong><br />
Un valor numerico que le dice a la funcion la distancia que debe saltar por vez. Valor mas alto, saltos mas largos, asi que sugiero 1 cuando los titulos sean pequeños para garantizar su lectura, pero eso queda a discrecion.</p>
<p><strong>FORMA DE USO:</strong></p>
<p>La aplicacion es muy simple. Lo podemos poner directamente en el objeto con el siguiente codigo:</p>
<blockquote><p> onClipEvent (load) {<br />
this.temblarMC(4);<br />
}</p></blockquote>
<p>Como tambien de la forma aplicada en este ejemplo:</p>
<blockquote><p> objeto.temblarMC(4);</p></blockquote>
<p>- <a href="http://www.box.net/index.php?rm=box_v2_download_shared_file&amp;file_id=f_51750280" target="_blank"><strong>Descargar FLA</strong></a><br />
- <a href="http://img255.imageshack.us/my.php?image=efectotemblormcbg6.swf" target="_blank"><strong>Ver ejemplo</strong></a></p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/efecto" rel="tag">efecto</a>, <a href="http://www.blogalaxia.com/tags/temblor" rel="tag">temblor</a>, <a href="http://www.blogalaxia.com/tags/movie" rel="tag">movie</a>, <a href="http://www.blogalaxia.com/tags/pelicula" rel="tag">pelicula</a>, <a href="http://www.blogalaxia.com/tags/clips" rel="tag">clips</a>, <a href="http://www.blogalaxia.com/tags/movieclips" rel="tag">movieclips</a>, <a href="http://www.blogalaxia.com/tags/flash" rel="tag">flash</a><br />
<img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/efecto" rel="tag">efecto</a>, <a href="http://technorati.com/tag/temblor" rel="tag">temblor</a>, <a href="http://technorati.com/tag/movie" rel="tag">movie</a>, <a href="http://technorati.com/tag/pelicula" rel="tag">pelicula</a>, <a href="http://technorati.com/tag/clips" rel="tag">clips</a>, <a href="http://technorati.com/tag/movieclips" rel="tag">movieclips</a>, <a href="http://technorati.com/tag/flash" rel="tag">flash</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=10&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/03/26/efecto-de-temblor-en-movieclips/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Actualizacion del TagsGenerator</title>
		<link>http://juniflash.wordpress.com/2007/03/25/actualizacion-del-tagsgenerator/</link>
		<comments>http://juniflash.wordpress.com/2007/03/25/actualizacion-del-tagsgenerator/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 18:54:34 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Herramientas]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/03/25/actualizacion-del-tagsgenerator/</guid>
		<description><![CDATA[Actualice nuevamente el TagsGenerator para que permita poner iconos de Blogalaxia y Technorati en lugar de titulos en texto. Lo bueno de esta forma es lo elegante que se ven y no rompen con el contexto de diseño de las plantillas.
Lo pueden usar y descargar desde aqui.
 tags, generator, generador, technorati, blogalaxia
 tags, generator, generador, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Actualice nuevamente el <strong>TagsGenerator</strong> para que permita poner iconos de Blogalaxia y Technorati en lugar de titulos en texto. Lo bueno de esta forma es lo elegante que se ven y no rompen con el contexto de diseño de las plantillas.</p>
<p>Lo pueden usar y descargar <a href="http://www.junihh.info/tools/tags/"><strong>desde aqui</strong></a>.</p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/tags" rel="tag">tags</a>, <a href="http://www.blogalaxia.com/tags/generator" rel="tag">generator</a>, <a href="http://www.blogalaxia.com/tags/generador" rel="tag">generador</a>, <a href="http://www.blogalaxia.com/tags/technorati" rel="tag">technorati</a>, <a href="http://www.blogalaxia.com/tags/blogalaxia" rel="tag">blogalaxia</a><br />
<img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/tags" rel="tag">tags</a>, <a href="http://technorati.com/tag/generator" rel="tag">generator</a>, <a href="http://technorati.com/tag/generador" rel="tag">generador</a>, <a href="http://technorati.com/tag/technorati" rel="tag">technorati</a>, <a href="http://technorati.com/tag/blogalaxia" rel="tag">blogalaxia</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=9&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/03/25/actualizacion-del-tagsgenerator/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
		<item>
		<title>Scroll con botones de un MovieClip</title>
		<link>http://juniflash.wordpress.com/2007/03/25/scroll-con-botones-de-un-movieclip/</link>
		<comments>http://juniflash.wordpress.com/2007/03/25/scroll-con-botones-de-un-movieclip/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 17:37:12 +0000</pubDate>
		<dc:creator>JuniHH</dc:creator>
		
		<category><![CDATA[Ejemplos]]></category>

		<guid isPermaLink="false">http://juniflash.wordpress.com/2007/03/25/scroll-con-botones-de-un-movieclip/</guid>
		<description><![CDATA[Imaginemos que queremos que una foto, un texto o toda una pagina (con imagenes y texto) contenida dentro de un MovieClip, necesitemos que pueda ser manejada a traves de botones con un efecto de scroll y que a la vez solo una parte de ese MovieClip sea visible a medida que se produce el scroll.
Para [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://farm1.static.flickr.com/164/433731260_8811866486_m.jpg" align="right" />Imaginemos que queremos que una foto, un texto o toda una pagina (con imagenes y texto) contenida dentro de un MovieClip, necesitemos que pueda ser manejada a traves de botones con un efecto de scroll y que a la vez solo una parte de ese MovieClip sea visible a medida que se produce el scroll.</p>
<p>Para eso necesitaremos cuatro cosas importantes:</p>
<ol>
<li><strong>Un poco de paciencia y ganas de aprender.</strong></li>
<li>El o los objetos al que necesitamos aplicar el efecto de scroll que debe ser convertido a un unico MovieClip.</li>
<li>Un MovieClip que nos servira como mascara.</li>
<li>Uno o dos botones con la propiedad de MovieClip (no como botones).</li>
</ol>
<p><strong>CODIGO FUENTE DE LA FUNCION:</strong></p>
<p>Copiamos el siguiente codigo y lo pegamos en el primer frame de la pelicula.</p>
<blockquote><p>MovieClip.prototype.scrollMovieClipFX = function(mcObjetoScroll:MovieClip, mcMascara:MovieClip, mcBotonSubir:MovieClip, mcBotonBajar:MovieClip, velocidadScroll:Number) {<br />
//<br />
var objScroll:MovieClip = mcObjetoScroll;<br />
var mask:MovieClip = mcMascara;<br />
var botSubir:MovieClip = mcBotonSubir;<br />
var botBajar:MovieClip = mcBotonBajar;<br />
//<br />
objScroll.setMask(mask);<br />
//<br />
//<br />
var interScroll:Number = new Number();<br />
var vel:Number = velocidadScroll;<br />
//<br />
var yMask:Number = mask._y;<br />
var yMaxMask:Number = mask._y + mask._height;<br />
//<br />
//<br />
botSubir.onRollOver = botBajar.onRollOver = function () {<br />
this.gotoAndStop(2);<br />
};<br />
botSubir.onRollOut = botBajar.onRollOut = function () {<br />
this.gotoAndStop(1);<br />
};<br />
//<br />
botSubir.onPress = function() {<br />
interScroll = setInterval(function () {<br />
if (objScroll._y &gt;= yMask) {<br />
clearInterval(interScroll);<br />
} else {<br />
objScroll._y += vel;<br />
}<br />
}, 30);<br />
};<br />
//<br />
botBajar.onPress = function() {<br />
interScroll = setInterval(function () {<br />
if ((objScroll._y + objScroll._height) &lt;= yMaxMask) {<br />
clearInterval(interScroll);<br />
} else {<br />
objScroll._y -= vel;<br />
}<br />
}, 30);<br />
};<br />
//<br />
botSubir.onRelease = botBajar.onRelease = function () {<br />
clearInterval(interScroll);<br />
};<br />
};</p></blockquote>
<p><strong>PARAMETROS DE LA FUNCION</strong></p>
<p><strong>mcObjetoScroll:</strong><br />
El MovieClip o clip de pelicula que sera afectado por el scroll al presionar las flechas.</p>
<p><strong>mcMascara:</strong><br />
La mascara que definira el area visible del objeto scroll. La mascara debe ser un MovieClip o clip de pelicula.</p>
<p><strong>mcBotonSubir:</strong><br />
El boton que al presionar hara subir el objeto scroll.</p>
<p><strong>mcBotonBajar:</strong><br />
El boton que al presionar hara bajar el objeto scroll.</p>
<p><strong>velocidadScroll:</strong><br />
Un numero que le dice a la funcion la velocidad a que debe correr el scroll. Mas alto el valor, mas rapido el scroll.</p>
<p>NOTA: Los botones de subir y bajar DEBEN tener la propiedad (tipo) de MovieClip o clip de pelicula. Los botones basado en la propiedad &#8220;boton&#8221; son muy limitados y no permiten ser manejados completamente por ActionScript. Por tanto, se deben crear botones parecidos al que expongo en la muestra adjunta. Para mas detalles, descarga la muestra, ve a la libreria y busca el objeto &#8220;BotonFlecha&#8221; y estudia la forma como lo tengo preparado.</p>
<p><strong>FORMA DE USO:</strong></p>
<p>Si vamos hasta la ultima linea del ejemplo descargable leeras:<br />
this.scrollMovieClipFX(this.texto, this.mascara, this.botonSubir, this.botonBajar, 10);</p>
<p>Los &#8220;this&#8221; le especifican a la funcion donde se encuentran los objetos. SE DEBE PONER LA DIRECCION EXACTA A CADA OBJETO, si queremos que trabaje el efecto adecuadamente.</p>
<p>- <a href="http://www.box.net/index.php?rm=box_v2_download_shared_file&amp;file_id=f_51664522" target="_blank"><strong>Descargar FLA</strong></a><br />
- <a href="http://img251.imageshack.us/my.php?image=textoscrollmcep5.swf" target="_blank"><strong>Ver ejemplo</strong></a></p>
<p><img src="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" alt="Blogalaxia Tags" align="absmiddle" /> <a href="http://www.blogalaxia.com/tags/texto" rel="tag">texto</a>, <a href="http://www.blogalaxia.com/tags/movieclip" rel="tag">movieclip</a>, <a href="http://www.blogalaxia.com/tags/movie" rel="tag">movie</a>, <a href="http://www.blogalaxia.com/tags/pelicula" rel="tag">pelicula</a>, <a href="http://www.blogalaxia.com/tags/clip" rel="tag">clip</a>, <a href="http://www.blogalaxia.com/tags/scroll" rel="tag">scroll</a>, <a href="http://www.blogalaxia.com/tags/flash" rel="tag">flash</a>, <a href="http://www.blogalaxia.com/tags/efecto" rel="tag">efecto</a><br />
<img src="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" alt="Technorati Tags" align="absmiddle" /> <a href="http://technorati.com/tag/texto" rel="tag">texto</a>, <a href="http://technorati.com/tag/movieclip" rel="tag">movieclip</a>, <a href="http://technorati.com/tag/movie" rel="tag">movie</a>, <a href="http://technorati.com/tag/pelicula" rel="tag">pelicula</a>, <a href="http://technorati.com/tag/clip" rel="tag">clip</a>, <a href="http://technorati.com/tag/scroll" rel="tag">scroll</a>, <a href="http://technorati.com/tag/flash" rel="tag">flash</a>, <a href="http://technorati.com/tag/efecto" rel="tag">efecto</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/juniflash.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/juniflash.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juniflash.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juniflash.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juniflash.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juniflash.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juniflash.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juniflash.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juniflash.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juniflash.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juniflash.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juniflash.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juniflash.wordpress.com&blog=907266&post=8&subd=juniflash&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://juniflash.wordpress.com/2007/03/25/scroll-con-botones-de-un-movieclip/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/junihh-128.jpg" medium="image">
			<media:title type="html">JuniHH</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/164/433731260_8811866486_m.jpg" medium="image" />

		<media:content url="http://farm1.static.flickr.com/154/412671266_8b3dc32893_m.jpg" medium="image">
			<media:title type="html">Blogalaxia Tags</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/184/412671268_445540b718_m.jpg" medium="image">
			<media:title type="html">Technorati Tags</media:title>
		</media:content>
	</item>
	</channel>
</rss>