CEC Remote Keymap
#1
Hi, I posted this on OpenELEC forums but I did not get a response. I am hoping that by posting here someone can give me some guidance.

I have a LG tv, specifically LN5600.
The guide I followed has allowed me to map the back button to what I want in the global scope. This works completely fine!
The problem is the mappings I have used for the FullscreenVideo scope is not working. I have check the logs and verified that it is loading VideoFullScreen.xml when I start playing a video.

Here is my keymap:
Code:
<keymap>
  <global>
    <keyboard>
      <key id="251">contextmenu</key>
    </keyboard>
  </global>
  <FullscreenVideo>
    <keyboard>
      <menu>back</menu>
      <pause>rewind</pause>
      <sleep>fastforward</sleep>
    </keyboard>
    <remote>
      <menu>back</menu>
    </remote>
  </FullscreenVideo>
</keymap>
Reply
#2
This is my remote.xml which does something similar:
Code:
<keymap>
  <global>
    <remote>
      <red>ContextMenu</red>
      <green>Info</green>
      <yellow>ShowSubtitles</yellow>
      <blue>XBMC.ActivateWindow(Home)</blue>
      <skipminus>Rewind</skipminus>
      <skipplus>FastForward</skipplus>
    </remote>
  </global>
  <FullscreenVideo>
    <remote>
      <blue>CodecInfo</blue>
    </remote>
  </FullscreenVideo>
</keymap>


I'm not sure why you have both keyboard and remote sections in yours.
Reply
#3
Are you sure your FullscreenVideo section shouldn't be

Code:
<remote>
      <menu>back</menu>
      <pause>rewind</pause>
      <sleep>fastforward</sleep>
    </remote>
Are you using a keyboard and remote?
Reply
#4
Hi, thanks for the reply, I initially used remote, but that didn't get detected. Followed a post around and found out that it may be registering as a keyboard. I had both remote and keyboard section because I wasn't sure what it will be, and wanted to test it.
Reply

Logout Mark Read Team Forum Stats Members Help
CEC Remote Keymap0