Kodi Community Forum
Glass House - Navigation Sound Pack - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+--- Thread: Glass House - Navigation Sound Pack (/showthread.php?tid=178950)



Glass House - Navigation Sound Pack - eQUIV - 2013-11-26

I recently released a skin mod that I created a new sound pack for, and I know I had a really hard time finding any standalone navigation sound packs. So, I decided to release the sound pack as a standalone pack for anyone looking for a change.

You can hear some of the sounds in use in this video:



Download:
http://bit.ly/1bjh2AU

Simply drop the folder into \Program Files (x86)\XBMC\sounds (for Windows)


RE: Glass House - Navigation Sound Pack - indiejones - 2013-11-26

Cool


RE: Glass House - Navigation Sound Pack - KevinSartori - 2013-12-05

I wish it weren't the case, but we unfortunately don't see many navigation sound packs for XBMC.

That's an interesting collection of sounds! Nice job! I have a slightly modified navigation sound pack that I use and I had to do some research to figure out how to add navigation sounds for Page Up, Page Down and the Context Menu, which I use a lot. In case you're curious, I've modified your sounds.xml file to add those:

Code:
<sounds>
  <actions>
    <action>
    <name>left</name>
    <file>left.wav</file>
  </action>
  <action>
    <name>right</name>
    <file>right.wav</file>
  </action>
  <action>
    <name>up</name>
    <file>up.wav</file>
  </action>
  <action>
    <name>down</name>
    <file>down.wav</file>
  </action>
  <action>
    <name>pageup</name>
    <file>up.wav</file>
  </action>
  <action>
    <name>pagedown</name>
    <file>down.wav</file>
  </action>
  <action>
    <name>select</name>
    <file>select.wav</file>
  </action>
  <action>
    <name>parentdir</name>
    <file>back.wav</file>
  </action>
  <action>
    <name>previousmenu</name>
    <file>back.wav</file>
  </action>
  <action>
    <name>screenshot</name>
    <file>shutter.wav</file>
  </action>
  </actions>
  <windows>
  <window>
    <name>InfoDialog</name>
    <activate>notify.wav</activate>
    <deactivate>out.wav</deactivate>
  </window>
  <window>
    <name>contextmenu</name>
    <activate>out.wav</activate>
  </window>
  </windows>
</sounds>

Again, nice work! Hopefully your efforts will inspire others to try their hand at compiling their own navigation sound packs!