hola tengo un problema tengo un reproductor (Active X de Media Player)
El tema es crear un PlayList y cargar un tema siguiente o anterior
es decir Next y Previous con archivos variables
y cuando se realiza un click sobre el tema en el PlayList obviamente reproducir el mismo.
<object classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"
type="application/x-oleobject" name="Player" width=320 height=44 standby="Loading Windows Media Player components..." id="MediaPlayer">
<param name=""
<param name="autoStart" value="True">
<param name="URL" value="http://hola">
<param name="filename" value="<?=$Song?>">
<embed width=320 height=44 autostart="True" type="application/x-mplayer2"
name="Player"></embed>
</object>
<input type="button" onClick="test()" name="Submit" value="Botón">
</body>
</html>
<script>
function test(){
alert(MediaPlayer.filename.value);
}
</script>