diff options
Diffstat (limited to 'sounds')
-rw-r--r-- | sounds/Bursting Bubbles/nav.wav | bin | 0 -> 29444 bytes | |||
-rw-r--r-- | sounds/Bursting Bubbles/sounds.xml | 61 |
2 files changed, 61 insertions, 0 deletions
diff --git a/sounds/Bursting Bubbles/nav.wav b/sounds/Bursting Bubbles/nav.wav Binary files differnew file mode 100644 index 0000000000..4cd149a6ee --- /dev/null +++ b/sounds/Bursting Bubbles/nav.wav diff --git a/sounds/Bursting Bubbles/sounds.xml b/sounds/Bursting Bubbles/sounds.xml new file mode 100644 index 0000000000..9a9b3ce5c8 --- /dev/null +++ b/sounds/Bursting Bubbles/sounds.xml @@ -0,0 +1,61 @@ +<!-- This file contains the mapping of actions to sounds --> + +<!-- The <actions> section contains global mapping --> + +<!-- To map a action to a sound, add a block like this to <actions>: --> +<!-- <action> --> +<!-- <name>left</name> --> +<!-- <file>cursor.wav</file> --> +<!-- </action> --> +<!-- Where <name> specifies the action to map a sound to and <file> the wav --> +<!-- file to play when the action occurs. --> + +<!-- Also window specific sound can be played --> + +<!-- To map a sound to a window, add a block like this to <windows>: --> +<!-- <window> --> +<!-- <name>infodialog</name> --> +<!-- <activate>notify.wav</activate> --> +<!-- <deactivate>out.wav</deactivate> --> +<!-- </window> --> +<!-- Where <name> specifies the window to map a sound to --> +<!-- <activate> and <deactivate> are the events a sound can be mapped to --> +<!-- by setting the file to play. --> + +<!-- Note: Only wav files are supported --> + +<sounds> + <actions> + <action> + <name>left</name> + <file>nav.wav</file> + </action> + <action> + <name>right</name> + <file>nav.wav</file> + </action> + <action> + <name>up</name> + <file>nav.wav</file> + </action> + <action> + <name>down</name> + <file>nav.wav</file> + </action> + <action> + <name>select</name> + <file>nav.wav</file> + </action> + <action> + <name>previousmenu</name> + <file>nav.wav</file> + </action> + </actions> + + <windows> + <window> + <name>infodialog</name> + <activate>nav.wav</activate> + </window> + </windows> +</sounds> |