Utilizo Flash 8 y firefox 1.5.0.3
Código :
var conexion = new NetConnection();
conexion.connect(null);
var stream = new NetStream(conexion);
stream.onStatus = function (infoObject)
{
if (infoObject.code == "NetStream.Play.Stop")
{
stream.seek(0);
stream.play();
} // end if
};
var cancion = random(6) + 1;
_root.audio.attachVideo(stream);
stream.play("./music/" + cancion + ".flv");gracias
