<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hontai &#187; FLVPlayback</title>
	<atom:link href="http://www.hontai.es/tag/flvplayback/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hontai.es</link>
	<description>Hontai? no sería mejor hentai(manga guarro)?</description>
	<lastBuildDate>Sun, 09 May 2010 19:34:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Loop para FLVPlayback en AS3</title>
		<link>http://www.hontai.es/2009/06/loop-para-flvplayback-en-as3/</link>
		<comments>http://www.hontai.es/2009/06/loop-para-flvplayback-en-as3/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 21:41:12 +0000</pubDate>
		<dc:creator>n0ldor</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[FLVPlayback]]></category>

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




import fl.video.VideoEvent;


&#160;


my_FLVPlayback.autoRewind=true;


&#160;


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


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


&#125;


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






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

		<guid isPermaLink="false">http://www.hontai.es/?p=173</guid>
		<description><![CDATA[Una de las cosas que me parece que le falta al FLVPlayback es la de hacer loop, para solucionar esto simplemente tenemos que poner el siguiente código en el propio objeto:
PLAIN TEXT
Actionscript:




on &#40;complete&#41; &#123;this.play&#40;&#41;;&#125; 






Es un código muy simple que espero os sea de utilidad.
]]></description>
			<content:encoded><![CDATA[<p>Una de las cosas que me parece que le falta al <a href="http://www.hontai.es/tag/FLVPlayback/">FLVPlayback</a> es la de hacer loop, para solucionar esto simplemente tenemos que poner el siguiente código en el propio objeto:</p>
<div class="igBar"><span id="lactionscript-4"><a href="#" onclick="javascript:showPlainTxt('actionscript-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-4">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">on</span> <span style="color: #66cc66;">&#40;</span>complete<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">play</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Es un código muy simple que espero os sea de utilidad.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hontai.es/2009/06/loop-para-flvplayback-en-as2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
