Single EPG mode and switching channels

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

    • Single EPG mode and switching channels

      In single epg mode there is possibility to switch between channels epg using prev/next (<>) buttons. I am trying to achieve the same by calling single epg mode from different plugin. I used python code from EpgSelection.py. All works fine except those switching. Is it somehow hardcoded and it works only when called by EPG button?

      Quellcode

      1. def nextService(self):
      2. if self.serviceChangeCB:
      3. self.serviceChangeCB(1, self)
      4. def prevService(self):
      5. if self.serviceChangeCB:
      6. self.serviceChangeCB(-1, self)
      I found out that in original EpgSelection self.serviceChangeCB has type of instancemethod but mine is NoneType that is why probably does not work. Any clue what is wrong?
      VU+ Zero - VTi 13.0.x
      VU+ DUO2 - VTi 13.0.x
      VU+ ULTIMO 4K - VTi 13.0.x

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