Win Recall/last channel button
#1
This might seem like a stupid question but I cant seem to find the answer. Is there a button that switchs between two channels quickly like a recall button.
Reply
#2
From memory it is 0 to switch to previous channel.
Reply
#3
Man thanks for that, it was bugging the hell out of me. Worked perfect but kind of a weird button to me. Wish it was enter button like in wmc
Reply
#4
Unlike wmc its easy to make changes to xbmc Smile

http://wiki.xbmc.org/index.php?title=keymap
Reply
#5
Yyyyyeeeeeaaaaaa. I tried reading that and understand what they are doing but still got lost. Could someone type the keyboard.xml to change channel recall key from 0 to "enter" or "return". Wiki kind of lost me.
Reply
#6
The trick is actually finding the action to call, programming the key is easy, basically

Code:
<keyboard>
  <zero>Action</zero>
</keyboard>

..or similar for remote. But I can't find the action for this sorry - not sure if it is exposed or just had coded somewhere. @opdenkamp would know...

https://github.com/xbmc/xbmc/blob/master...ilib/Key.h

? #define ACTION_CHANNEL_SWITCH 183 maybe?
Addons I wrote &/or maintain:
OzWeather (Australian BOM weather) | Check Previous Episode | Playback Resumer | Unpause Jumpback | XSqueezeDisplay | (Legacy - XSqueeze & XZen)
Sorry, no help w/out a *full debug log*.
Reply
#7
That lost me even more. So your saying I have to find the action name and program it with remote.xml instead of keyboard.xml? To clear up my remote I have a logitech harmony 510 sending mce commands with a usb uirt device on htpc and eventghost interpreting to xbmc commands but my "ok" is "enter* instead of "select". Did I explain that were u understand?
Reply
#8
it's linked to action "number0" (REMOTE_0) in xbmc. see https://github.com/xbmc/xbmc/blob/master...r.cpp#L128
Reply

Logout Mark Read Team Forum Stats Members Help
Recall/last channel button0