Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/01/2011, 18:03
Avatar de ManuelAlejandro
ManuelAlejandro
 
Fecha de Ingreso: noviembre-2009
Ubicación: Alicante
Mensajes: 87
Antigüedad: 14 años, 6 meses
Puntos: 6
¿Quitar el listado a este reproductor?

Hola compañeros, he instalado un script de reproductor de audio en esta web: www.artefenix.net

Como veis aparece el listado de audios y abajo el recuadro con las opciones (play, stop, etc).

Me gustaría quitarle el listado y que se mostrase únicamente el recuadro de opciones.

Tengo varios archivos os los dejo aquí, el de style:

Código:
<?xml version="1.0" ?> 
<settings scroll_bar_color="1294DE" scroll_bar_bg_color="FFFFFF" arrows_color="378ED3" border_color="B1B1B1" buttons_color1="6F706B" buttons_color2="000000" buttons_normal="FFFFFF" buttons_over="1294DE" background_color="FFFFFF" volume_active="FFFFFF" volume_inactive="1294DE" text_normal="000000" text_over="000000" text_select="FFFFFF" playlist_item_normal="EFEFED" playlist_item_over="FAFAFA" playlist_item_select="1294DE" playlist_position="000000" autoplay="on" autoresume="on" default_volume="100" numeration="off" time="elapsed" />
El principal del reproductor en html:

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Developed by Reality Software | www.realitysoftware.ca
Released by Flash MP3 Player | www.flashmp3player.org
Note: This is a free application distributed under the Creative Commons Attribution 3.0 license,
which means you can use it in any way you want provided you keep our links intact.
Don't want our links in the script? You can support this project by purchasing a paid
version: www.flashmp3player.org/buy.html
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Flash MP3 Player</title>

<!-- Location of javascript. -->
<script language="javascript" type="text/javascript" src="swfobject.js" ></script>

<style type="text/css">
<!--
body {
	background-color: #F9F7F5;
}
-->
</style></head>

<body>

<!-- Div that contains player. -->
<div id="player">
<h1>No flash player!</h1>
<p>It looks like you don't have flash player installed. <a href="http://www.macromedia.com/go/getflashplayer" >Click here</a> to go to Macromedia download page.</p>
</div>

<!-- Script that embeds player. -->
<script language="javascript" type="text/javascript">
var so = new SWFObject("flashmp3player.swf", "player", "200", "200", "9"); // Location of swf file. You can change player width and height here (using pixels or percents).
so.addParam("quality", "high");
so.addVariable("content_path","mp3"); // Location of a folder with mp3 files (relative to php script).
so.addVariable("color_path","default.xml"); // Location of xml file with color settings.
so.addVariable("script_path","flashmp3player.php"); // Location of php script.
so.write("player");
</script>

</body>
</html>
Hay otro con las funciones del reproductor en php, no sé si estára en unos de estos dos o en ese, si hace falta el otro decídmelo y lo subo.

¿Podéis echarme una mano? Es que le doy vueltas y vueltas y no hay manera...

MUCHÍSIMAS GRACIAS, como siempre

Última edición por ManuelAlejandro; 03/01/2011 a las 18:51