Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/06/2010, 10:05
SeaPirates
 
Fecha de Ingreso: enero-2009
Ubicación: España
Mensajes: 786
Antigüedad: 16 años
Puntos: 9
problema con script

Coji el script de una radio, para no usar reproductor de windows media:

Código:
<script type="text/javascript" src="http://www.habbid.com.br/js/jquery.js"></script>
    <script type="text/javascript" src="http://www.habbid.com.br/js/functions.js"></script>
 



 
                        <script>
            contPlayer = '<object id="WMPlay" width="0" height="0" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"   codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="" type="application/x-oleobject" viewastext hspace="0" vspace="0" align="top"> <param name="FileName" value="http://habberosradio.listen2myradio.com/media/playradio755660.asx"> <param name="AutoStart" value="True"> <param name="TransparentAtStart" value="false"> <param name="ShowControls" value="0"> <param name="ShowDisplay" value="false"> <param name="ShowStatusBar" value="0"> <param name="AutoSize" value="0"> <param name="AnimationAtStart" value="false"> <embed width="0" height="0" autostart="True" align="top" type="application/x-mplayer2" id="MediaPlayer" transparentatstart="false" showcontrols="0" showdisplay="false" showstatusbar="0" animationatstart="false" filename="http://habberosradio.listen2myradio.com/media/playradio755660.asx" autosize="0"> </embed></object>';
                        if(ifra = window.parent.document.getElementById("topFrame")){
                            if(ifra.contentDocument.getElementById("player_habbid").innerHTML=="")
                                tocando=0;
                            else
                                tocando=1;
                        }else
                            tocando=1;
            function PlayClick() {
                if (tocando == 0) {
                    if(player_top()){
                                                ifra = window.parent.document.getElementById("topFrame").contentDocument;
                        ifra.getElementById("player_habbid").innerHTML=contPlayer;
                    }else{
                        $.cookie("stop", "0", {expires: 1, path: '/'});
                        $("#player_no_player_interno").html(contPlayer);
                    }
                    tocando = 1;
                                        $("#bt-play").hide();
                                        $("#bt-stop").show();
                }
            }
            function StopClick() {
                tocando = 0;
                if(player_top()){
                                    ifra = window.parent.document.getElementById("topFrame").contentDocument;
                                    ifra.getElementById("player_habbid").innerHTML="";
                }else{
                    $.cookie("stop", "1", {expires: 1, path: '/'});
                    $("#player_no_player_interno").html("");
                }
                                $("#bt-stop").hide();
                                $("#bt-play").show();
            }
            function player_top(){
                if(ifra = window.parent.document.getElementById("topFrame")){
                    if(ifra.contentDocument.getElementById("player_habbid"))
                        return true;
                    else
                        return false;
                }else
                    return false;
            }
                    var ajax=1;
                    function atualiza_dados(id, caminho){
                                    ajax++;
                                    $("#"+id).html("...");
                                    $("#"+id).load(caminho+".php?ajax="+ajax);
                    }
        </script>
El problema es que yo si lo oigo, pero los demás no. Pero sin embargo con reproductor de windows media si lo escuchan, por qué?