installed bootcamp on my mac - no harmony remote input option?

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
henrikyo Offline
Fan
Posts: 311
Joined: Jan 2009
Reputation: 0
Post: #1
So i have a perfect xbmc build on osx side, but i wanted to try bootcamp because of hd audio.

Now i get this weird problem that each time i enter xbmc and use the remote, the volume adjust on the os level of things, no matter which button i press. then i thought i had forgotten to set harmony remote as input device

but there isnt that setting like it is on osx, just peripherals which is greyed out.

anyone know whats up?

Picture: Samsung LE46A656
Reciever: Onkyo TX-SR607B
Front Spkeakers: Yamaha NS-555
Computer: Asrock Ion 330, 4gb ram, OCed 2.0Ghz.

My Ht(havnt updated pictures)
http://minhjemmekino.no/Henrikr
find quote
jhsrennie Offline
Team-XBMC Developer
Posts: 7,237
Joined: Nov 2008
Reputation: 117
Location: Chester, UK
Post: #2
It depends on what IR receiver you're using. In Windows many IR receivers generate APPCOMMAND messages and by default XBMC ignores these. The messages get passed to Windows where they change the system volume.

If you want XBMC to handle the volume APPCOMMANDs itself you need to create a mapping file. Press Windows-R and in the Run dialog type:

Code:
notepad "%appdata%\xbmc\userdata\keymaps\appcommand.xml"

Click OK and answer yes when you're prompted to create a new file. Copy and paste the following into Notepad:

Code:
<keymap>
  <global>
    <appcommand>
      <volume_mute>Mute</volume_mute>
      <volume_down>VolumeDown</volume_down>
      <volume_up>VolumeUp</volume_up>
    </appcommand>
  </global>
</keymap>

Close Notepad and save the changes.

If the volume buttons still don't work we'll need to see a debug log. Enable debug logging from System settings, System, Debugging, and restart XBMC then wait a minute or two for all the startup tasks to finish. Now press the volume down button three times then the volume up button three times, then close XBMC.

Open the debug log by pressing Windows-R and in the Run dialog type:

Code:
"%appdata%\xbmc\xbmc.log"

(including the quotes). Click OK and the log should open in Notepad. Copy and paste the log into http://pastebin.com/ and post the link it gives you here.
find quote