Posts: 49
Joined: Feb 2012
Reputation:
0
Hi guys
I've tried around with the keyboard.xml and was able to create all input handlings like I want it except one special thing.
I can't find out how to directly switch to a channel in the "pvrosdguide" window. When I press select / enter in the guide osd the information dialog pops up where xbmc asks me if I want to record or to switch the channel. Is it possible to directly switch the channel. I would create my timers with the context menu or info menu instead.
Thanks for your help.
Posts: 33
Joined: Apr 2012
Reputation:
4
msj33
Junior Member
Posts: 33
+1 The OK button in fullscreen PVR mode, should either bring up channel list or EPG!
Posts: 49
Joined: Feb 2012
Reputation:
0
Hey cool thanks. I'll try this out. Sorry when this has been discussed before haven't seen this in the forum. Nice thing to know
Posts: 7
Joined: Dec 2015
Reputation:
0
2016-02-03, 15:44
I cant seem to get the right behavior for this advanced setting. When I am in the EPG, I choose a channel with my remote "ok". It doesn't switch to that channel in full screen. I add the setting in advanced xml. I want to switch to the channel I choose and have it close the EPG (not the channel list) and show the channel fullscreen. I don't know if this is a different settings somewhere.
Posts: 3,735
Joined: Dec 2010
Reputation:
53
negge
yo guysv7may bd latr tomorroe
Posts: 3,735
There's a setting for it in the standard setting location, I think thw advancedsetting is obsolete.
Posts: 51
Joined: Jun 2017
Reputation:
0
Hi
I had this xml for Leia but it no longer works in Matrix, my main concerns was pressing OK, when watching live tv to bring up mini EPG on the side. any ideas on what is wrong, thanks in advance guys
keymap>
<global>
<remote>
<yellow>ContextMenu</yellow>
<green>PreviousMenu</green>
<blue>Info</blue>
</remote>
</global>
<FullscreenVideo>
<remote>
<yellow>OSD</yellow>
<green>NextSubtitle</green>
<blue>Info</blue>
</remote>
</FullscreenVideo>
<FullscreenLiveTV>
<remote>
<left>StepBack</left>
<right>StepForward</right>
<select>XBMC.ActivateWindow(PVROSDChannels)</select>
<start>XBMC.ActivateWindow(TVChannels)</start>
<up>ChannelUp</up>
<down>ChannelDown</down>
<teletext>XBMC.ActivateWindow(Teletext)</teletext>
<back>Close</back>
<pageplus>SkipNext</pageplus>
<pageminus>SkipPrevious</pageminus>
</remote>
</FullscreenLiveTV>
</keymap>
Posts: 12,646
Joined: Oct 2014
Reputation:
631
2021-11-12, 16:47
(This post was last modified: 2021-11-12, 16:50 by DarrenHill.)
The XBMC.
has been depreciated and is now dropped if I remember well.
So for example change <teletext>XBMC.ActivateWindow(Teletext)</teletext>
to <teletext>ActivateWindow(Teletext)</teletext>
for all your XBMC.
prefixed commands to get them to work again.