Solved Need help setting up MCE remote with some custom commands
#1
Hi everyone,

First of all I hope I'm in the right place. I just bought an MCE remote, more exactly HP RC1314819/00. I've set some of the keys as I want but I have some problems.
I want to set:
- RED button to open Subtitle
- Guide (EPG) button to open ListenLiveEU addon
- RecordedTV to open TV Shows

My keymap.xml that I've tried to make, looks like this:
Code:
<keymap>
    <global>
        <keyboard>
            <u>RunScript(script.xbmc.subtitles)</u>
            <r mod="ctrl">RunScript(plugin.audio.listenliveeu)</r>
            <s>ActivateWindow(shutdownmenu)</s>
        </keyboard>
    </global>
</keymap>

Keep in mind I've never did this so I'm trying to learn.

Also, I tried setting in MCE Remote Key Mapper app Volume UP/Down and mute to be as Volume UP, Volume Down, Mute since I want to control the overall systems volume, same with the mute, not only Kodi, but it doesn't work at all.

Thank you in advance!
--------------------------------------------
LE: Problem with Volume Up/Down and Mute is solved. I needed to change the code for them in the registry to:
Code:
0e,00,00,00,01,E2,00,\ ; Mute
  10,00,00,00,01,E9,00,\ ; Volume Up
  11,00,00,00,01,EA,00,\ ; Volume Down
-----------------------------------------------------------------------
LE2: Solved the problem with TV Shows and ListenLiveEU. Had to change it this way:
Code:
<r mod="ctrl">runaddon(plugin.audio.listenliveeu)</r>
<o mod="ctrl">XBMC.ActivateWindow(videolibrary,tvshowtitles,return)</o>
------------------------------------------------------------------------
LE3: Solved the problem with subtitle download. It had to be this way:
Code:
<u>ActivateWindow(SubtitleSearch)</u>
Reply

Logout Mark Read Team Forum Stats Members Help
Need help setting up MCE remote with some custom commands0