Enigma1: Kanalwechsel per Script?

    • Enigma1: Kanalwechsel per Script?

      Moin zusammen, gibt es Befehle für ein Script mit dem man den Kanal wechseln kann. Brauche dieses um die Dream über ein Script in den Standby zu versetzen wobei vorher zu einem bestimmten Kanal umgeschaltet werden soll.
      mfg


      Wer sich nicht helfen läßt ist selber Schuld!
    • ja ne enigma1 image bieten wir net an, wir sind ein enigma2 forum

      Soll das heißen Du weißt womöglich eine Lösung aber da es sich um E¹ handelt gibt es von Dir keine Hilfe? Falls dem so ist naja....... ?(
      mfg


      Wer sich nicht helfen läßt ist selber Schuld!
    • Dann Entschuldige ich mich für die Späte Aufklärung das es sich um E¹ handelt und Du Dir unnötig Arbeit gemacht hast :( Aber wenn Du es schon fertig hast würde ich das Ergebnis auch gerne mal sehen, vielleicht braucht jemand anderes mal sowas. Und ich denke das man daraus auch was lernen kann was das Script programmieren anbetrifft ;)
      mfg


      Wer sich nicht helfen läßt ist selber Schuld!

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von hurricane65 ()

    • HTML-Quellcode

      1. <html>
      2. <head>
      3. <title>Remote Control</title>
      4. <link rel="stylesheet" type="text/css" href="webif.css">
      5. <script>
      6. function key(code)
      7. {
      8. document.location="/cgi-bin/rc?" + code;
      9. if (1)
      10. window.setTimeout("osdShot()", 250);
      11. }
      12. function osdShot()
      13. {
      14. document.location="/cgi-bin/osdshot?display=no";
      15. window.setTimeout("document.location.reload()", 250);
      16. }
      17. </script>
      18. </head>
      19. <body id="mainbody" style="padding: 10px; background-color: #F4F4F4;">
      20. <table border="0" cellspacing="0" cellpadding="0">
      21. <tr>
      22. <td>
      23. <map name="remotecontrol">
      24. <area shape="circle" coords="129, 54, 10" href="javascript:key(116)" alt="Power">
      25. <area shape="circle" coords="63, 123, 10" href="javascript:key(2)" alt="1">
      26. <area shape="circle" coords="109, 123, 10" href="javascript:key(3)" alt="2">
      27. <area shape="circle" coords="153, 123, 10" href="javascript:key(4)" alt="3">
      28. <area shape="circle" coords="63, 148, 10" href="javascript:key(5)" alt="4">
      29. <area shape="circle" coords="109, 148, 10" href="javascript:key(6)" alt="5">
      30. <area shape="circle" coords="153, 148, 10" href="javascript:key(7)" alt="6">
      31. <area shape="circle" coords="63, 173, 10" href="javascript:key(8)" alt="7">
      32. <area shape="circle" coords="109, 173, 10" href="javascript:key(9)" alt="8">
      33. <area shape="circle" coords="153, 173, 10" href="javascript:key(10)" alt="9">
      34. <area shape="circle" coords="63, 197, 10" href="javascript:key(412)" alt="previous">
      35. <area shape="circle" coords="109, 197, 10" href="javascript:key(11)" alt="0">
      36. <area shape="circle" coords="153, 197, 10" href="javascript:key(407)" alt="next">
      37. <area shape="circle" coords="54, 243, 15" href="javascript:key(115)" alt="volume up">
      38. <area shape="circle" coords="107, 233, 10" href="javascript:key(113)" alt="mute">
      39. <area shape="circle" coords="159, 243, 15" href="javascript:key(402)" alt="bouquet up">
      40. <area shape="circle" coords="66, 274, 15" href="javascript:key(114)" alt="volume down">
      41. <area shape="circle" coords="107, 258, 10" href="javascript:key(1)" alt="lame">
      42. <area shape="circle" coords="147, 274, 15" href="javascript:key(403)" alt="bouquet down">
      43. <area shape="circle" coords="48, 306, 10" href="javascript:key(358)" alt="info">
      44. <area shape="circle" coords="106, 310, 15" href="javascript:key(103)" alt="up">
      45. <area shape="circle" coords="167, 306, 10" href="javascript:key(141)" alt="dream">
      46. <area shape="circle" coords="70, 343, 15" href="javascript:key(105)" alt="left">
      47. <area shape="circle" coords="108, 340, 15" href="javascript:key(352)" alt="OK">
      48. <area shape="circle" coords="146, 343, 15" href="javascript:key(106)" alt="right">
      49. <area shape="circle" coords="53, 381, 10" href="javascript:key(392)" alt="audio">
      50. <area shape="circle" coords="106, 374, 15" href="javascript:key(108)" alt="down">
      51. <area shape="circle" coords="162, 381, 10" href="javascript:key(393)" alt="video">
      52. <area shape="circle" coords="56, 421, 10" href="javascript:key(398)" alt="red">
      53. <area shape="circle" coords="90, 422, 10" href="javascript:key(399)" alt="green">
      54. <area shape="circle" coords="123, 422, 10" href="javascript:key(400)" alt="yellow">
      55. <area shape="circle" coords="158, 421, 10" href="javascript:key(401)" alt="blue">
      56. <area shape="circle" coords="61, 460, 10" href="javascript:key(385)" alt="tv">
      57. <area shape="circle" coords="90, 461, 10" href="javascript:key(377)" alt="radio">
      58. <area shape="circle" coords="123, 461, 10" href="javascript:key(66)" alt="text">
      59. <area shape="circle" coords="153, 460, 10" href="javascript:key(138)" alt="help">
      60. </map>
      61. <img src="rc_big.jpg" height="607" width="220" border="0" alt="Remote Control" usemap="#remotecontrol">
      62. </td>
      63. <td>
      64. <img style="background-color: #000000" src="trans.gif" width="0" height="0" border="0">
      65. </td>
      66. </tr>
      67. </table>
      68. </body>
      69. </html>
      Alles anzeigen
      mfg


      Wer sich nicht helfen läßt ist selber Schuld!