2010-10-12, 09:35
Evergreen4 Wrote:Hi all,
First of all, congrats for this specefic topic for Harmony remotes & XBMC users... very helpful.
I am currently using XBMC installed in my ASRock ION330HT HTPC under Windows 7 in combination with a Harmony 1000 remote... everything is runnig OK, but I would love to improve the funcionality of the remote by adding some "keyboard actions" to some soft buttons on the remote.
If you have a look to this, in the section "Actions" you can find many commands that does not have any assigned a key. Eg: there is an action called "AudioNextLanguage" that will "change to the next audio track in a video with multiple audio tracks" pretty useful when playing mkv videos, but given that there is no key for that action, the only way to change audios is going to the OSD Player Controls and navigate to the audio options... something a bit annoying considering that regarding the subtitles ("action" name: NextSubtitle) there is key ("L") to change them...
So the question is: is there any way to assign a key on the keyboard to the "actions" listed here
Thanks all and pls apoligize my poor English.
I did some more reading today and found out two very userful wiki's about it.
The first one is http://wiki.xbmc.org/index.php?title=Mod...yboard.xml and second one is http://wiki.xbmc.org/index.php?title=Keymap.xml
When i read about this example i think that it would be easy to apply and change to what i need, or atleast i hope hehe...
Code:
<keymap>
<global>
<keyboard>
<g mod="ctrl">Info</g>
</keyboard>
</global>
<FullScreenVideo>
<keyboard>
<g mod="ctrl">OSD</g>
</keyboard>
</FullScreenVideo>
</keymap>
If i understand correctly i could modify the above example to something like this
Code:
<keymap>
<keyboard>
<FullScreenVideo>
<F5>NextSubtitle</F5>
</keyboard>
</FullScreenVideo>
</keymap>
or with keynames insted from http://wiki.xbmc.org/index.php?title=Lis...C_keynames
Code:
<keymap>
<keyboard>
<FullScreenVideo>
<F5>VK_F5</F5>
</keyboard>
</FullScreenVideo>
</keymap>
This should map F5 key to NextSubtitle action when the user is in FullScreenVideo
Next step would be to add something like an MCE Keyboard, or what ever works for you, to your all mighty logitech remote

I have note verified this but will do when i come home. I just read the wiki pages and got an big light bulb over my head

Please correct me if im wrong ...
Cheers