Announcement

Collapse
No announcement yet.

Media Player and Client Player tabs just give me code

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Media Player and Client Player tabs just give me code

    If I click on either the Media Player or Client Player tabs I get a screen with nothing but code. It's nothing but a white screen and the code. Here's an example:

    Code:
    <span id="logotable"> <table cellspacing='0' width='100%' ><tr ><td class='logobar' align='left'  colspan='1' ><span  id="pagetitle"> </span>  <span  id="clock"> &nbsp;<img src="/images/HomeSeer/ui/clock.png" align="absmiddle" border="0">&nbsp;<span  id="CTime"> 3/27/2015 5:46:05 PM</span> </span> <span style="display:none;" id="userclock"> </span>  <span  id="lbsunrise"> &nbsp;<img src="/images/HomeSeer/ui/sunrise.png" align="absmiddle" border="0"> <b>Sunrise:</b> 6:42 AM</span>  <span  id="lbsunset"> &nbsp;<img src="/images/HomeSeer/ui/sunset.png" align="absmiddle" border="0"> <b>Sunset:</b> 7:10 PM</span> <span  id="lbuser"> &nbsp;<b>User:</b> Colin</span> </td> <td class='logobar' align='right'  colspan='1' ><a href="http://www.homeseer.com" target="_blank"><img src="/images/HomeSeer/ui/logo.gif" border="0"></a></td></tr> </table>  </span> <div id='header_spacer'></div> <!-- Start of page --> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9,chrome=1" > <title>BLMediaPlayer</title> </head> <body>  <script language="JavaScript"> function Browser() { var ua, s, i; this.isIE    = false; this.isNS    = false; this.version = null; ua = navigator.userAgent; s = "MSIE"; if((i = ua.indexOf(s)) >= 0) { this.isIE = true; this.version = parseFloat(ua.substr(i + s.length)); return; } s = "Netscape6/"; if((i = ua.indexOf(s)) >= 0) { this.isNS = true; this.version = parseFloat(ua.substr(i + s.length)); return; } // Treat any other "Gecko" browser as NS 6.1. s = "Gecko"; if((i = ua.indexOf(s)) >= 0) { this.isNS = true; this.version = 6.1; return; } } var browser = new Browser(); // Global object to hold drag information. var dragObj = new Object(); dragObj.zIndex = 0;  function dragStart(event, id) { var el; var x, y; // If an element id was given, find it. Otherwise use the element being // clicked on. if(id) dragObj.elNode = document.getElementById(id); else { if(browser.isIE) dragObj.elNode = window.event.srcElement; if(browser.isNS) dragObj.elNode = event.target; // If this is a text node, use its parent element. if(dragObj.elNode.nodeType == 3) dragObj.elNode = dragObj.elNode.parentNode; } // Get cursor position with respect to the page. if(browser.isIE) { x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft; y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop; } if(browser.isNS) { x = event.clientX + window.scrollX; y = event.clientY + window.scrollY; } // Save starting positions of cursor and element. dragObj.cursorStartX = x; dragObj.cursorStartY = y; dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10); dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10); if(isNaN(dragObj.elStartLeft)) dragObj.elStartLeft = 0; if(isNaN(dragObj.elStartTop))  dragObj.elStartTop  = 0; // Update element's z-index. dragObj.elNode.style.zIndex = ++dragObj.zIndex; // Capture mousemove and mouseup events on the page. if(browser.isIE) { document.attachEvent("onmousemove", dragGo); document.attachEvent("onmouseup", dragStop); window.event.cancelBubble = true; window.event.returnValue = false; } if(browser.isNS) { document.addEventListener("mousemove", dragGo, true); document.addEventListener("mouseup",   dragStop, true); event.preventDefault(); } }  function dragGo(event) { var x, y; // Get cursor position with respect to the page. if(browser.isIE) { x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft; y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop; } if(browser.isNS) { x = event.clientX + window.scrollX; y = event.clientY + window.scrollY; } // Move drag element by the same amount the cursor has moved. dragObj.elNode.style.left = (dragObj.elStartLeft + x - dragObj.cursorStartX) + "px"; dragObj.elNode.style.top  = (dragObj.elStartTop  + y - dragObj.cursorStartY) + "px"; if(browser.isIE) { window.event.cancelBubble = true; window.event.returnValue = false; } if(browser.isNS) event.preventDefault(); } function dragStop(event) { // Stop capturing mousemove and mouseup events. if(browser.isIE) { document.detachEvent("onmousemove", dragGo); document.detachEvent("onmouseup", dragStop); } if(browser.isNS) { document.removeEventListener("mousemove", dragGo, true); document.removeEventListener("mouseup",   dragStop, true); } } </script> <script language="JavaScript">function scrollPopUp(e){  selectPopup.style.top=document.body.scrollTop+100;  selectPopup.style.left=document.body.scrollLeft+100;}</script><script> function checkAction(action) {   if(action == 'Play')   {     document.theMediaPlayer.media_action.value = 'Play';     document.theMediaPlayer.submit();   }   else if(action == 'Pause')   {     document.theMediaPlayer.media_action.value = 'Pause';

    And on and on. Is this a HS3 issue or a BLMediaPlayer issue. I believe that it may be HS3 related because the entirety of the HS3 interface is gone with nothing but the code left.
    Originally posted by rprade
    There is no rhyme or reason to the anarchy a defective Z-Wave device can cause

    #2
    What browser?
    Cheers,
    Bob
    Web site | Help Desk | Feature Requests | Message Board

    Comment


      #3
      Firefox. It worked before. I ran my trial out a few months ago and just bought it. Now it doesn't work.
      Originally posted by rprade
      There is no rhyme or reason to the anarchy a defective Z-Wave device can cause

      Comment


        #4
        Just tried the players and they spit out code in Chrome too.
        Don

        Comment


          #5
          I have tested it with IE and Chrome
          Cheers,
          Bob
          Web site | Help Desk | Feature Requests | Message Board

          Comment


            #6
            Not trying to be a pain but ... FYI it works for me in IE.
            Attached Files
            Don

            Comment


              #7
              It works for me in IE also. I don't ever use it though. And I don't have Chrome.
              Originally posted by rprade
              There is no rhyme or reason to the anarchy a defective Z-Wave device can cause

              Comment


                #8
                For the record I only see the code in Chrome for Android also.
                Originally posted by rprade
                There is no rhyme or reason to the anarchy a defective Z-Wave device can cause

                Comment


                  #9
                  Just downloaded the trial and seeing the same problem in Chrome. Has the problem been fixed, it seems to have been there for a while, or am I doing something wrong?

                  Comment


                    #10
                    No there haven't been any updates. It's a drag but this is the best we have. The thing g is that Blade doesn't use this plugin.
                    Originally posted by rprade
                    There is no rhyme or reason to the anarchy a defective Z-Wave device can cause

                    Comment


                      #11
                      Try 3.0.14 in the updater
                      Cheers,
                      Bob
                      Web site | Help Desk | Feature Requests | Message Board

                      Comment


                        #12
                        Originally posted by Blade View Post
                        Try 3.0.14 in the updater

                        You are the MAN! It works like a dream.
                        Thank you!
                        Originally posted by rprade
                        There is no rhyme or reason to the anarchy a defective Z-Wave device can cause

                        Comment


                          #13
                          No problem. Sorry that took so long but I completely forgot about it
                          Thanks for reminding me
                          Cheers,
                          Bob
                          Web site | Help Desk | Feature Requests | Message Board

                          Comment


                            #14
                            No Go for me. If others are good with 3.0.14.0, Then the problem must be at my end. ant idea as to what might be causing this error? (Client and Media Player pages both give me the new error, had pages of code before)

                            Edit: Also seeing it in Explorer, Was Ok in IE before. (Also tried turning off Kaspersky). I'll do some more digging.

                            Click image for larger version

Name:	BLMediaPlayer.jpg
Views:	1
Size:	37.6 KB
ID:	1183871
                            Last edited by YvMo; March 18, 2016, 12:07 AM.

                            Comment


                              #15
                              Sort of works for me in Chrome and Edge. However the volume stays at 0.
                              Will submit a help ticket.
                              Don

                              Comment

                              Working...
                              X