Update Library Keymap
#1
Hi All
I am tryin gto map the Update Video Library Built in Function to the 'e' button. I've read the wiki and tried to create my own keymap.xml, but it is not working.

Here are the relevate lines from my debug log.

23:49:40 T:5116 M:2199011328 INFO: Loading special://profile/Keymap.xml
23:49:40 T:5116 M:2198888448 ERROR: Error loading keymap: special://profile/Keymap.xml, Line 0
Error reading Element value.

And here is my keymap.xml
<keymap>
<global>
<keyboard>
<e>UpdateLibrary(Video)</e>
</keyboard>
</global>
<keymap>

I've also tried it with quotes on "Video" and have searched the forums to no avail.


As always, your help is appreciated.

Thanks
Declan
Reply
#2
Try:
Quote:XBMC.UpdateLibrary(video)
Reply
#3
DecK Wrote:Hi All
I am tryin gto map the Update Video Library Built in Function to the 'e' button. I've read the wiki and tried to create my own keymap.xml, but it is not working.

Here are the relevate lines from my debug log.

23:49:40 T:5116 M:2199011328 INFO: Loading special://profile/Keymap.xml
23:49:40 T:5116 M:2198888448 ERROR: Error loading keymap: special://profile/Keymap.xml, Line 0
Error reading Element value.

And here is my keymap.xml
<keymap>
<global>
<keyboard>
<e>UpdateLibrary(Video)</e>
</keyboard>
</global>
<keymap>

I've also tried it with quotes on "Video" and have searched the forums to no avail.


As always, your help is appreciated.

Thanks
Declan

your last line is missing the forward slash /

it should be

Code:
<keymap>
<global>
   <keyboard>
     <e>XBMC.UpdateLibrary(video)</e>
   </keyboard>
</global>
</keymap>
Reply
#4
Thanks guys, that did it.

Appreciate the help.
Declan
Reply

Logout Mark Read Team Forum Stats Members Help
Update Library Keymap0