<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comentarios en: Cómo construir un preloader propio</title>
	<atom:link href="http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/</link>
	<description>Creando Soluciones RIA...</description>
	<lastBuildDate>Sun, 14 Mar 2010 11:33:46 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: Arun Kumar A G</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-63878</link>
		<dc:creator>Arun Kumar A G</dc:creator>
		<pubDate>Fri, 05 Dec 2008 21:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-63878</guid>
		<description>Hey Buddy,

Thank you very much...

Helped me a lot!</description>
		<content:encoded><![CDATA[<p>Hey Buddy,</p>
<p>Thank you very much&#8230;</p>
<p>Helped me a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Pedro</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-46469</link>
		<dc:creator>Pedro</dc:creator>
		<pubDate>Sat, 04 Oct 2008 20:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-46469</guid>
		<description>Gracias fue muy util</description>
		<content:encoded><![CDATA[<p>Gracias fue muy util</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: ChixKecebuice</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-28430</link>
		<dc:creator>ChixKecebuice</dc:creator>
		<pubDate>Tue, 02 Sep 2008 21:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-28430</guid>
		<description>wow :-) 
its very unconventional point of view. 
Nice post. 
realy good post 
 
thx :-)</description>
		<content:encoded><![CDATA[<p>wow <img src='http://www.madeinflex.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
its very unconventional point of view.<br />
Nice post.<br />
realy good post </p>
<p>thx <img src='http://www.madeinflex.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: kamui</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-8418</link>
		<dc:creator>kamui</dc:creator>
		<pubDate>Thu, 29 May 2008 14:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-8418</guid>
		<description>como puedo agregar en el siguiente actionscript un mouse clock (convertir el mouse en reloj), cambiar el tiempo de carga en porcentaje y por ultimo modificar la figura del loading.

package Code
{
	import mx.preloaders.*; 
    import flash.events.ProgressEvent;
    import flash.geom.Rectangle;
    import mx.graphics.RoundedRectangle;

	public class DownloadProgressBarSubClassMin extends DownloadProgressBar
	{
		public function DownloadProgressBarSubClassMin()
        {   
            super();
            //labelRect.width = 500; 
            // labelRect.width = 500;
            //labelRect.height = 200;
            // Set the download label.
            backgroundColor = 0X000000;
            downloadingLabel=&quot;  Locstatt by Marrder Omnimedia&quot;
            // Set the initialization label.
            initializingLabel=&quot;  Locstatt by Marrder Omnimedia&quot;
            // Set the minimum display time to 2 seconds.
            MINIMUM_DISPLAY_TIME=2000;
          
        }
        
        // Override to return true so progress bar appears
        // during initialization.       
        override protected function showDisplayForInit(elapsedTime:int,count:int):Boolean {
                return true;
        }

        // Override to return true so progress bar appears during download.     
        override protected function showDisplayForDownloading(elapsedTime:int, event:ProgressEvent):Boolean {
                return true;
        }
		override protected function get labelRect():Rectangle{
			return new Rectangle(0,0,200,20);
		}		
		override protected function get borderRect():RoundedRectangle{
			return new RoundedRectangle(0,0,200,50,5);
		}
	}
}</description>
		<content:encoded><![CDATA[<p>como puedo agregar en el siguiente actionscript un mouse clock (convertir el mouse en reloj), cambiar el tiempo de carga en porcentaje y por ultimo modificar la figura del loading.</p>
<p>package Code<br />
{<br />
	import mx.preloaders.*;<br />
    import flash.events.ProgressEvent;<br />
    import flash.geom.Rectangle;<br />
    import mx.graphics.RoundedRectangle;</p>
<p>	public class DownloadProgressBarSubClassMin extends DownloadProgressBar<br />
	{<br />
		public function DownloadProgressBarSubClassMin()<br />
        {<br />
            super();<br />
            //labelRect.width = 500;<br />
            // labelRect.width = 500;<br />
            //labelRect.height = 200;<br />
            // Set the download label.<br />
            backgroundColor = 0X000000;<br />
            downloadingLabel=&#8221;  Locstatt by Marrder Omnimedia&#8221;<br />
            // Set the initialization label.<br />
            initializingLabel=&#8221;  Locstatt by Marrder Omnimedia&#8221;<br />
            // Set the minimum display time to 2 seconds.<br />
            MINIMUM_DISPLAY_TIME=2000;</p>
<p>        }</p>
<p>        // Override to return true so progress bar appears<br />
        // during initialization.<br />
        override protected function showDisplayForInit(elapsedTime:int,count:int):Boolean {<br />
                return true;<br />
        }</p>
<p>        // Override to return true so progress bar appears during download.<br />
        override protected function showDisplayForDownloading(elapsedTime:int, event:ProgressEvent):Boolean {<br />
                return true;<br />
        }<br />
		override protected function get labelRect():Rectangle{<br />
			return new Rectangle(0,0,200,20);<br />
		}<br />
		override protected function get borderRect():RoundedRectangle{<br />
			return new RoundedRectangle(0,0,200,50,5);<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Omar Guevara</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-4779</link>
		<dc:creator>Omar Guevara</dc:creator>
		<pubDate>Thu, 13 Mar 2008 20:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-4779</guid>
		<description>Gracias por la pronta respuesta pero, yo utilice las dos clases para el preload, solo action script 3, nada de componentes mx, el error me sale después de cargar la aplicación en un accordion que tengo dentro de la aplicación,  el preload lo hace bien, aquí dejo la url para q vean el error, el caso es que con algunos navegadores sale el error en otros no, tengo el Mozilla Firefox 2.0.0.12

http://www.tree-technology.com/nueva/

En la pestaña de nosotros esta el accordion al que me refiero, gracias por la ayuda...</description>
		<content:encoded><![CDATA[<p>Gracias por la pronta respuesta pero, yo utilice las dos clases para el preload, solo action script 3, nada de componentes mx, el error me sale después de cargar la aplicación en un accordion que tengo dentro de la aplicación,  el preload lo hace bien, aquí dejo la url para q vean el error, el caso es que con algunos navegadores sale el error en otros no, tengo el Mozilla Firefox 2.0.0.12</p>
<p><a href="http://www.tree-technology.com/nueva/" rel="nofollow">http://www.tree-technology.com/nueva/</a></p>
<p>En la pestaña de nosotros esta el accordion al que me refiero, gracias por la ayuda&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Raul Diaz</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-4777</link>
		<dc:creator>Raul Diaz</dc:creator>
		<pubDate>Thu, 13 Mar 2008 08:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-4777</guid>
		<description>Omar, por lo que cuentas estás utilizando componentes mx: como el mx:accordion en el preloader, mira la documentación, no se deben utilizar estos tipos de componentes en los preloaders.</description>
		<content:encoded><![CDATA[<p>Omar, por lo que cuentas estás utilizando componentes mx: como el mx:accordion en el preloader, mira la documentación, no se deben utilizar estos tipos de componentes en los preloaders.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Omar Guevara</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-4775</link>
		<dc:creator>Omar Guevara</dc:creator>
		<pubDate>Wed, 12 Mar 2008 21:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-4775</guid>
		<description>Muy buen artículo, lo probé y funciona bien, pero tengo un pequeño problema, cuando coloco un Accordion con 3 pestañas, y dentro de cada uno de ellas cargo una imagen y texto, al ir a la segunda o tercera pestañas me sale el siguiente error

TypeError: Error #1009: No se puede acceder a una propiedad o a un método de una referencia a un objeto nulo.

at clases::subclassOfMovieClip/moveGraphics()
at clases::subclassOfMovieClip/showProgress()
at clases::subclassOfDownloadProgressBar/::FlexInitProgress()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.preloaders::Preloader/::appProgressHandler()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.core::UIComponent/dispatchEvent()
at mx.managers::LayoutManager/::doPhasedInstantiation()
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()

Creo q es porque la clase de preloader se llama de nuevo al cargar la imagen y el texto, soy nuevo en este cuento, espero que me colaboren... Gracias...</description>
		<content:encoded><![CDATA[<p>Muy buen artículo, lo probé y funciona bien, pero tengo un pequeño problema, cuando coloco un Accordion con 3 pestañas, y dentro de cada uno de ellas cargo una imagen y texto, al ir a la segunda o tercera pestañas me sale el siguiente error</p>
<p>TypeError: Error #1009: No se puede acceder a una propiedad o a un método de una referencia a un objeto nulo.</p>
<p>at clases::subclassOfMovieClip/moveGraphics()<br />
at clases::subclassOfMovieClip/showProgress()<br />
at clases::subclassOfDownloadProgressBar/::FlexInitProgress()<br />
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()<br />
at flash.events::EventDispatcher/dispatchEvent()<br />
at mx.preloaders::Preloader/::appProgressHandler()<br />
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()<br />
at flash.events::EventDispatcher/dispatchEvent()<br />
at mx.core::UIComponent/dispatchEvent()<br />
at mx.managers::LayoutManager/::doPhasedInstantiation()<br />
at Function/http://adobe.com/AS3/2006/builtin::apply()<br />
at mx.core::UIComponent/::callLaterDispatcher2()<br />
at mx.core::UIComponent/::callLaterDispatcher()</p>
<p>Creo q es porque la clase de preloader se llama de nuevo al cargar la imagen y el texto, soy nuevo en este cuento, espero que me colaboren&#8230; Gracias&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Raúl Díaz</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-3092</link>
		<dc:creator>Raúl Díaz</dc:creator>
		<pubDate>Sun, 22 Jul 2007 09:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-3092</guid>
		<description>Otro tutorial de preloaders por Jesse Warden en:
http://jessewarden.com/2007/07/making-a-cooler-preloader-in-flex-part-1-of-3.html</description>
		<content:encoded><![CDATA[<p>Otro tutorial de preloaders por Jesse Warden en:<br />
<a href="http://jessewarden.com/2007/07/making-a-cooler-preloader-in-flex-part-1-of-3.html" rel="nofollow">http://jessewarden.com/2007/07/making-a-cooler-preloader-in-flex-part-1-of-3.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Alberto Albericio</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-2393</link>
		<dc:creator>Alberto Albericio</dc:creator>
		<pubDate>Thu, 17 May 2007 15:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-2393</guid>
		<description>Enhorabuena Raúl!

Una recomendación.. creo que el artículo quedaría redondo si activas la opción de View Source de la aplicación ejemplo.

Es sólo un consejo :)

Bienvenido a MIF!

Alberto</description>
		<content:encoded><![CDATA[<p>Enhorabuena Raúl!</p>
<p>Una recomendación.. creo que el artículo quedaría redondo si activas la opción de View Source de la aplicación ejemplo.</p>
<p>Es sólo un consejo <img src='http://www.madeinflex.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Bienvenido a MIF!</p>
<p>Alberto</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: eldervaz</title>
		<link>http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/comment-page-1/#comment-2368</link>
		<dc:creator>eldervaz</dc:creator>
		<pubDate>Tue, 15 May 2007 00:27:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.madeinflex.com/2007/05/14/como-construir-un-preloader-propio/#comment-2368</guid>
		<description>ah carambas!!!! esto ya motiva a escribir aqui :D, muy bien MIF</description>
		<content:encoded><![CDATA[<p>ah carambas!!!! esto ya motiva a escribir aqui <img src='http://www.madeinflex.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , muy bien MIF</p>
]]></content:encoded>
	</item>
</channel>
</rss>
