Is it possible to add sound events to the global playlist menu structure (i.e. categories)? I would like to add a highlight and select sound to this menu structure.
It appears that animation changes between playlist menu changes are controlled with
<onPlaylistEnter>
</onPlaylistEnter>
I tried adding a sound event within this construct:
<onPlaylistEnter>
<set duration="0.01"><animate type="width" to ="500"/><animate type="height" to ="500"/><animate type="volume" to="1"/></set>
<set duration="0.05"><sound type="highlight" src="sounds/highlight.wav"/></set>
</onPlaylistEnter>
I know that highlight, select, load, and unload sounds can be added globally, but I cannot find the correct area to add sounds to the global vertical playlist menu which stays on screen across all other areas.
Please see the attached file for an example.
My layout file does have the following set:
<layout width="1920" height="1080" font="Roboto-Bold.ttf" loadFontSize="32" fontColor="EEEEEEE">
<sound type="load" src="sounds/loadcfw.wav"/>
<sound type="unload" src="sounds/unloadcfw.wav"/>
<sound type="highlight" src="sounds/highlight.wav"/>
<sound type="select" src="sounds/select.wav"/>
...