<?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>Comments on: Reproducir audio en AS3</title>
	<atom:link href="http://www.codigoactionscript.org/reproducir-audio-en-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codigoactionscript.org/reproducir-audio-en-as3/</link>
	<description>Blog de programación en ActionScript. Tips, tutoriales, ejemplos de Adobe Flash, Flex y AIR</description>
	<lastBuildDate>Sat, 28 Aug 2010 13:47:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: CODIGO.actionscript &#187; Leer las etiquetas ID3 de un archivo MP3 en AS3</title>
		<link>http://www.codigoactionscript.org/reproducir-audio-en-as3/comment-page-1/#comment-77</link>
		<dc:creator>CODIGO.actionscript &#187; Leer las etiquetas ID3 de un archivo MP3 en AS3</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigo.as/blog/?p=52#comment-77</guid>
		<description>[...] Implementaremos la lectura de estos metadatos ID3 a la clase creada anteriormente. [...]</description>
		<content:encoded><![CDATA[<p>[...] Implementaremos la lectura de estos metadatos ID3 a la clase creada anteriormente. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafael</title>
		<link>http://www.codigoactionscript.org/reproducir-audio-en-as3/comment-page-1/#comment-4018</link>
		<dc:creator>Rafael</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigo.as/blog/?p=52#comment-4018</guid>
		<description>Necesitaria una ayuda con este codigo ActionScript.

Necesito reproducir 2 o mas archivos MP3.

Esta es la web

www.roinkan.com.ar/test

y Estos son los archivos que quiero reproducir.

www.roinkan.com.ar/HNA.mp3
www.roinkan.com.ar/Dorime_Techno.mp3


Este es el codigo Actionscript



&lt;code&gt;

mySnd = new Sound(); // create sound object

// to load your own sound put it on the web
// and change the path below
mySnd.loadSound(&quot;http://www.roinkan.com.ar/HNA.mp3&quot;,true);


sndbar._visible = false; // hide the sound bar initally

// onLoad executed when the sound completes to load
mySnd.onLoad = function(){
 // set total time in seconds on the display instead of percentage
 totalseconds = Math.floor(mySnd.duration/1000);
 totaltime=Math.floor(totalseconds/60) + &quot;:&quot; + totalseconds%60;
 // show sound bar for playback
 sndbar._visible = true;

}


volume = 100;
pause=0;


function f1()
{
 // percent loaded
 buffered=Math.floor((mySnd.getBytesLoaded()/mySnd.getBytesTotal())*100);

 // display progress on the display
 if(buffered



Desde Ya Muchas Gracias.</description>
		<content:encoded><![CDATA[<p>Necesitaria una ayuda con este codigo ActionScript.</p>
<p>Necesito reproducir 2 o mas archivos MP3.</p>
<p>Esta es la web</p>
<p><a href="http://www.roinkan.com.ar/test" rel="nofollow">http://www.roinkan.com.ar/test</a></p>
<p>y Estos son los archivos que quiero reproducir.</p>
<p><a href="http://www.roinkan.com.ar/HNA.mp3" rel="nofollow">http://www.roinkan.com.ar/HNA.mp3</a><br />
<a href="http://www.roinkan.com.ar/Dorime_Techno.mp3" rel="nofollow">http://www.roinkan.com.ar/Dorime_Techno.mp3</a></p>
<p>Este es el codigo Actionscript</p>
<p><code></p>
<p>mySnd = new Sound(); // create sound object</p>
<p>// to load your own sound put it on the web<br />
// and change the path below<br />
mySnd.loadSound("http://www.roinkan.com.ar/HNA.mp3",true);</p>
<p>sndbar._visible = false; // hide the sound bar initally</p>
<p>// onLoad executed when the sound completes to load<br />
mySnd.onLoad = function(){<br />
 // set total time in seconds on the display instead of percentage<br />
 totalseconds = Math.floor(mySnd.duration/1000);<br />
 totaltime=Math.floor(totalseconds/60) + ":" + totalseconds%60;<br />
 // show sound bar for playback<br />
 sndbar._visible = true;</p>
<p>}</p>
<p>volume = 100;<br />
pause=0;</p>
<p>function f1()<br />
{<br />
 // percent loaded<br />
 buffered=Math.floor((mySnd.getBytesLoaded()/mySnd.getBytesTotal())*100);</p>
<p> // display progress on the display<br />
 if(buffered</p>
<p>Desde Ya Muchas Gracias.</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
