Kodi Community Forum

Full Version: MCE Remote setup - all required buttons ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey everyone,

I've got the MCE remote and most of it works out of the box when using XBMC Live. but there are quite a few buttons that are not mapped and crucial.

c - bring up content menu
m - bring up movie menu so you have access to subtitles options, video, audio etc.. etc..
TAB - start visulizations
p - viz settings

Those I would say of the most required for me right now. Anyone got these working?
http://www.xbmc.org/forum/showthread.php?t=39183

Read that it should give you a starting point.
The-Boxhead Wrote:http://www.xbmc.org/forum/showthread.php?t=39183

Read that it should give you a starting point.


I've followed that guide and now my files look like this yet the buttons dont work even after a reboot?


Lircmap.xml
Code:
<remote device="mceusb">
                <pause>Pause</pause>
                <stop>Stop</stop>
                <forward>Forward</forward>
                <reverse>Rewind</reverse>
                <left>Left</left>
                <right>Right</right>
                <up>Up</up>
                <down>Down</down>
                <select>OK</select>
                <pageplus>ChanUp</pageplus>
                <pageminus>ChanDown</pageminus>
                <back>Back</back>
                <menu>PreviousMenu</menu>
                <title>Play</title>
                <info>More</info>
                <skipplus>Skip</skipplus>
                <skipminus>Replay</skipminus>
                <display>Teletext</display>
                <start>Home</start>
                <record>Record</record>
                <volumeplus>VolUp</volumeplus>
                <volumeminus>VolDown</volumeminus>
                <mute>Mute</mute>
                <power>Power</power>
                <myvideo>Videos</myvideo>
                <mymusic>Music</mymusic>
                <mypictures>Pictures</mypictures>
                <mytv>TV</mytv>
                <one>One</one>
                <two>Two</two>
                <three>Three</three>
                <four>Four</four>
                <five>Five</five>
                <six>Six</six>
                <seven>Seven</seven>
                <eight>Eight</eight>
                <nine>Nine</nine>
                <zero>Zero</zero>
                <mytv>Red</mytv>
                <mymusic>Green</mymusic>
                <mypictures>Yellow</mypictures>
                <myvideo>Blue</myvideo>
[b]                <playermenu>PlayerMenu</playermenu>
                <contentmenu<ContentMenu</contentmenu>
                <vizmenu>VizMenu</vizmenu>
                <viz>Viz</viz>[/b]
        </remote>


And Keymap.xml
Code:
<keymap>
  <global>
    <remote>
      <three>VolumeUp</three>
      <six>VolumeDown</six>
      <nine>Mute</nine>
      <play>Play</play>
      <pause>Pause</pause>
      <stop>Stop</stop>
      <forward>FastForward</forward>
      <reverse>Rewind</reverse>
      <left>Left</left>
      <right>Right</right>
      <up>Up</up>
      <down>Down</down>
      <select>Select</select>
      <pageplus>PageUp</pageplus>
      <pageminus>PageDown</pageminus>
      <back>ParentDir</back>
      <menu>PreviousMenu</menu>
      <title>ContextMenu</title>
      <info>Info</info>
      <skipplus>SkipNext</skipplus>
      <skipminus>SkipPrevious</skipminus>
      <display>FullScreen</display>
      <start>PreviousMenu</start>
      <record>Screenshot</record>
      <volumeplus>VolumeUp</volumeplus>
      <volumeminus>VolumeDown</volumeminus>
      <mute>Mute</mute>
      <power>XBMC.ShutDown()</power>
      <myvideo>XBMC.ActivateWindow(MyVideos)</myvideo>
      <mymusic>XBMC.ActivateWindow(MyMusic)</mymusic>
      <mypictures>XBMC.ActivateWindow(MyPictures)</mypictures>
      <mytv>XBMC.ActivateWindow(Home)</mytv>
[b]      <playermenu>m</playermenu>
      <contentmenu>c</contentmenu>
      <vizmenu>v</vizmenu>
      <viz>Tabulator</viz>[/b]
    </remote>

I'm really just adding in the ability to start the Visualisation, Change Vis settings, bring up content menu to scan Movies/Music folders and the movie menu during movie to get access to sound and vidoe settings. These dont seem to work out of the box from a XBOXLiveCD. And seeing as the RecTV, Guide, LiveTV and DVD are basically redundant untill that add into XBMC I have decided to use those buttons.

Change to remote buttons
RecTV -> PlayerMenu
Guide -> ContentMenu
LiveTV -> VizMenu
DVD -> Visualizations


can anyone see where I am going wrong?