<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for After-hours</title>
	<link>http://www.after-hours.org</link>
	<description></description>
	<pubDate>Sun, 20 Jul 2008 14:21:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>

	<item>
		<title>Comment on Scroll Component by fenix</title>
		<link>http://www.after-hours.org/2007/03/12/scroll-component/#comment-6040</link>
		<pubDate>Sat, 05 Apr 2008 17:03:06 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/03/12/scroll-component/#comment-6040</guid>
					<description>&lt;code&gt;
class c {
	private static var __instancia:c;
	private var __config:Object;
	
	private function c () {
		__config = {
			t:1,
			e:["easeOutExpo", "easeInExpo", "easeInOutExpo", "linear", "easeOutBack"],
			colores:["0x283704", "0xFFFFFF", "0x979797","0x62860c","0x9FD127"]
		}
	}
	
	public static function getC():c{
		
		if(__instancia == null){
			__instancia = new c();
		}
		
		return __instancia;
	}
	
	public function get (id:String):Object {
		return __config[id];
	}
	
	
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
class c {<br />
	private static var __instancia:c;<br />
	private var __config:Object;</p>
<p>	private function c () {<br />
		__config = {<br />
			t:1,<br />
			e:["easeOutExpo", "easeInExpo", "easeInOutExpo", "linear", "easeOutBack"],<br />
			colores:["0x283704", "0xFFFFFF", "0x979797","0x62860c","0x9FD127"]<br />
		}<br />
	}</p>
<p>	public static function getC():c{</p>
<p>		if(__instancia == null){<br />
			__instancia = new c();<br />
		}</p>
<p>		return __instancia;<br />
	}</p>
<p>	public function get (id:String):Object {<br />
		return __config[id];<br />
	}</p>
<p>}<br />
</code>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Scroll Component by toni</title>
		<link>http://www.after-hours.org/2007/03/12/scroll-component/#comment-6010</link>
		<pubDate>Fri, 14 Mar 2008 02:52:01 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/03/12/scroll-component/#comment-6010</guid>
					<description>Hola Sergi,

haces doble clic sobre el clip de película y en el segundo fotograma, modificas:

[AS]
bg_mc._visible = true
[/AS]

por

[AS]
bg_mc._visible = false
[/AS]

Saludos</description>
		<content:encoded><![CDATA[<p>Hola Sergi,</p>
<p>haces doble clic sobre el clip de película y en el segundo fotograma, modificas:</p>
<div class="igBar"><span id="lactionscript-1"><a href="#" onclick="javascript:showPlainTxt('actionscript-1'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-1">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">bg_mc.<span style="color: #0066CC;">_visible</span> = <span style="color: #000000; font-weight: bold;">true</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>por</p>
<div class="igBar"><span id="lactionscript-2"><a href="#" onclick="javascript:showPlainTxt('actionscript-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-2">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">bg_mc.<span style="color: #0066CC;">_visible</span> = <span style="color: #000000; font-weight: bold;">false</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Saludos
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Scroll Component by Sergi</title>
		<link>http://www.after-hours.org/2007/03/12/scroll-component/#comment-6009</link>
		<pubDate>Wed, 12 Mar 2008 23:31:33 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/03/12/scroll-component/#comment-6009</guid>
					<description>Gracias, genial scroller.
Por cierto es posible que el fondo no tenga color o se le pueda aplicar alfa?</description>
		<content:encoded><![CDATA[<p>Gracias, genial scroller.<br />
Por cierto es posible que el fondo no tenga color o se le pueda aplicar alfa?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Flash MX - Menu (Botón con estado activo) by toni</title>
		<link>http://www.after-hours.org/2004/08/23/flash-mx-menu-boton-con-estado-activo/#comment-6000</link>
		<pubDate>Sun, 09 Mar 2008 21:13:40 +0000</pubDate>
		<guid>http://www.after-hours.org/2004/08/23/flash-mx-menu-boton-con-estado-activo/#comment-6000</guid>
					<description>Hola,

modifica tu array asi:

[AS]
menu[1] = {titulo:"Opción 1", pelicula:"pagina.html"};
[/AS]

y para el evento onRelease substituye:

[AS]
holder_mc.loadMovie(this.pelicula);
[/AS]

por

[AS]
getURL(this.pelicula)
[/AS]

saludos.</description>
		<content:encoded><![CDATA[<p>Hola,</p>
<p>modifica tu array asi:</p>
<div class="igBar"><span id="lactionscript-3"><a href="#" onclick="javascript:showPlainTxt('actionscript-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-3">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">menu</span><span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;color:#800000;">1</span><span style="color: #66cc66;">&#93;</span> = <span style="color: #66cc66;">&#123;</span>titulo:<span style="color: #ff0000;">"Opción 1"</span>, pelicula:<span style="color: #ff0000;">"pagina.html"</span><span style="color: #66cc66;">&#125;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>y para el evento onRelease substituye:</p>
<div class="igBar"><span id="lactionscript-4"><a href="#" onclick="javascript:showPlainTxt('actionscript-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-4">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">holder_mc.<span style="color: #0066CC;">loadMovie</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #006600;">pelicula</span><span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>por</p>
<div class="igBar"><span id="lactionscript-5"><a href="#" onclick="javascript:showPlainTxt('actionscript-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-5">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">getURL</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #006600;">pelicula</span><span style="color: #66cc66;">&#41;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>saludos.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Flash MX - Menu (Botón con estado activo) by Isabel</title>
		<link>http://www.after-hours.org/2004/08/23/flash-mx-menu-boton-con-estado-activo/#comment-5997</link>
		<pubDate>Fri, 07 Mar 2008 22:10:58 +0000</pubDate>
		<guid>http://www.after-hours.org/2004/08/23/flash-mx-menu-boton-con-estado-activo/#comment-5997</guid>
					<description>Hola solo quisiera saber como se puede poner un getUrl para cada elemento del menu... y la verdad me urge!!!

Gracias y que tenga un buen dia</description>
		<content:encoded><![CDATA[<p>Hola solo quisiera saber como se puede poner un getUrl para cada elemento del menu... y la verdad me urge!!!</p>
<p>Gracias y que tenga un buen dia
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Menú acordeón horizontal by Ion</title>
		<link>http://www.after-hours.org/2007/02/24/menu-acordeon-horizontal/#comment-5906</link>
		<pubDate>Wed, 23 Jan 2008 09:17:25 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/02/24/menu-acordeon-horizontal/#comment-5906</guid>
					<description>Este ejemplo es genial, se pueden cargar swf y poner botones, eres grandioso toni!!</description>
		<content:encoded><![CDATA[<p>Este ejemplo es genial, se pueden cargar swf y poner botones, eres grandioso toni!!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Flash XML CDATA by jd</title>
		<link>http://www.after-hours.org/2005/01/02/flash-xml-cdata/#comment-5900</link>
		<pubDate>Tue, 22 Jan 2008 18:44:11 +0000</pubDate>
		<guid>http://www.after-hours.org/2005/01/02/flash-xml-cdata/#comment-5900</guid>
					<description>Que bueno, hace algun rato habia buscado como meter en el XML ese tipo de datos.</description>
		<content:encoded><![CDATA[<p>Que bueno, hace algun rato habia buscado como meter en el XML ese tipo de datos.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Scroll Component by Corsario</title>
		<link>http://www.after-hours.org/2007/03/12/scroll-component/#comment-5872</link>
		<pubDate>Thu, 17 Jan 2008 23:00:18 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/03/12/scroll-component/#comment-5872</guid>
					<description>Buen trabajo gracias por el recurso...</description>
		<content:encoded><![CDATA[<p>Buen trabajo gracias por el recurso...
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Scroll Component by toni</title>
		<link>http://www.after-hours.org/2007/03/12/scroll-component/#comment-5841</link>
		<pubDate>Thu, 10 Jan 2008 20:16:17 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/03/12/scroll-component/#comment-5841</guid>
					<description>Me alegro que os guste ;)

Orion,

el problema, es que el scroll no lo hice pensando en eso, pero prometo hacer una nueva versión con esas características. 

Un saludo</description>
		<content:encoded><![CDATA[<p>Me alegro que os guste <img src='http://www.after-hours.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Orion,</p>
<p>el problema, es que el scroll no lo hice pensando en eso, pero prometo hacer una nueva versión con esas características. </p>
<p>Un saludo
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Scroll Component by enrike</title>
		<link>http://www.after-hours.org/2007/03/12/scroll-component/#comment-5838</link>
		<pubDate>Thu, 10 Jan 2008 12:35:38 +0000</pubDate>
		<guid>http://www.after-hours.org/2007/03/12/scroll-component/#comment-5838</guid>
					<description>gracias por las ayudas para mejorar y seguir aprendiendo!</description>
		<content:encoded><![CDATA[<p>gracias por las ayudas para mejorar y seguir aprendiendo!
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
