Auri,
VC 0.872 running on windows7 ultimate x64
I Created this file cinema.xml, and put in
C:\Users\Wanilton\AppData\Roaming\XBMC\userdata\keymaps
with
<keymap>
<global>
<keyboard>
<key id="0x30">XBMC.RunScript(special://home/addons/script.cinema.experience/addon.py)</key>
<key id="0x31">Info</key>
</keyboard>
</global>
</keymap>
However, I can not run the addon using ^D by sendkeys
Even using the keyboard with Ctrl D work, so I think it could be something related to the location where you installed the addon, or something.
C:\Users\Wanilton\AppData\Roaming\XBMC\addons\script.cinema.experience\addon.py
Wanilton
Hey Wanilton,
Forget about that keymapping there.
What I told you, when I answered your PM is in fact wrong and was something I tried before I got mine working, so forget the keymappings as I explained you.
I will tell you exactly what todo now to make it work.
1. The VC part you have correct except make it "^d" instead of "^D" dunno if XBMC is case-sensative in that aspect.
2. Go to "C:\Program Files (x86)\XBMC\system\keymaps" and open the default XML for your controller, in my case keyboard.xml
3. Search for "<MovieInformation>"
4. replace this line " <d mod="ctrl">XBMC.RunScript(special://home/addons/script.cinema.experience/addon.py)</d>" (originally it will also say "info" or "close" but just replace it with what I posted here)
5. It should now look like this :
<MovieInformation>
<keyboard>
<backspace>Close</backspace>
<i>Close</i>
<d mod="ctrl">XBMC.RunScript(special://home/addons/script.cinema.experience/addon.py)</d>
<key id='65446'>Close</key>
</keyboard>
Now I would advice you to restart XBMC (perhaps not needed, but do it anyways)
VC will now send a CTRL+d on your command and while you have XBMC focused and you are in the Movie Information Screen it should now execute the script "XBMC.RunScript(special://home/addons/script.cinema.experience/addon.py" which will in fact start your Cinema Experience
I hope it works, and sorry for the confusing in my PM reply to you, I was at work and was thinking about something else.
best of luck
Auri