So I guess you guys don't want to share on how to do this so I will elaborate for anyone who wants to know.
First open up the sounds folder found in XBMC\skin\MC360\sounds\ and open up the sounds.xml file.
Next scroll down almost all the way to the bottom and you will see a section that looks like this
<windows>
<window>
<name>startup</name>
<activate>startup.wav</activate>
</window>
<window>
<name>infodialog</name>
<activate>notify.wav</activate>
<deactivate>notify.wav</deactivate>
</window>
</windows>
</sounds>
All you have to do to add a sound for the guide blade is add this into it
<window>
<name>playercontrols</name>
<activate>click.wav</activate>
</window>
And now when you open the guide blade it will make the click sound. Now if you want a sound to play when the guide blade is closed you just add this little line in there
<deactivate>back.wav</deactivate>
and the whole control should now look like this
<window>
<name>playercontrols</name>
<activate>click.wav</activate>
<deactivate>back.wav</deactivate>
</window>
and the whole <windows> section I showed you should look like this
<windows>
<window>
<name>startup</name>
<activate>startup.wav</activate>
</window>
<window>
<name>infodialog</name>
<activate>notify.wav</activate>
<deactivate>notify.wav</deactivate>
</window>
<window>
<name>playercontrols</name>
<activate>click.wav</activate>
<deactivate>back.wav</deactivate>
</window>
</windows>
</sounds>
Now I haven't tried yet but I would imagine it works with other windows as well,
so here is a list of the window names.
I hope you guys have enjoyed this crappy little tutorial, may you get as much joy out of it as blackbolt allready has.
This post has been edited by CHI3f: Jan 10 2007, 05:25 AM