[Solved] Custom Settings Group In remote.xml?
#1
Would it be possible to add a tag set so that I could map buttons while in the Settings menu? For example I would like something like this:
Code:
<SystemSettings>
   <one>XBMC.ActivateWindow(videosettings)</one>
   <two>XBMC.ActivateWindow(tvsettings)</two>
</SystemSettings>

I tried using systemsettings and settings as the parent tags but it didn't work.
Reply
#2
Looking at the default remote.xml, maybe you have to nest your key definitions within <remote>...</remote>?
Code:
<keymap>
  :
  <SystemSettings>
    <remote>
     <one>XBMC.ActivateWindow(videosettings)</one>
     <two>XBMC.ActivateWindow(tvsettings)</two>
    </remote>
  </SystemSettings>
  :
</keymap>
Reply
#3
Yep I forgot the remote child tag. Here's what it should be:

Code:
<Settings>
   <remote>
      <one>XBMC.ActivateWindow(videosettings)</one>
   </remote>
</Settings>

Thanks!
Reply
#4
Great! Glad you got it sorted out.
Reply

Logout Mark Read Team Forum Stats Members Help
[Solved] Custom Settings Group In remote.xml?0