Mytheatre guide for xbmc
#1
has anyone tried to modify the mytheatre.py script to have it display like a real guide ? not just channel favorites that would be perfect.
Reply
#2
i was playing with the script a little this evening and i've gotten a somewhere i think anyways.
i added in the def onaction(self, action):

if action == action_move_up or action == action_move_down:
#display epg
if self.epglistvisible == false:
self.txtprogdesc.setvisible(false)
self.epglist.setvisible(true)
self.epglistvisible = true
if self.listings[1][0] == 'channel':
listingspos = self.list.getselectedposition()+1
#clear list
self.epglist.reset()
#get listings
self.displayepg(self.listings[listingspos][2][17:])
self.strepgtitle.setlabel(self.listings[listingspos][1][3:])
if len(self.epglistings) > 0:
self.setfocus(self.list)
else:
self.epglist.additem('no guide information')
self.setfocus(self.ist)

that will display what is playing on that specific channel. now if you scroll up and down a few times you will see that they channel info on the right does not change i haven't figured that out yet any help would be great. i'd like to change it even more i'm open to ideas ! anyone ?
Reply

Logout Mark Read Team Forum Stats Members Help
Mytheatre guide for xbmc0