Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - throwingmuse

Pages: [1]
1
Help / Re: Playlist Sounds
« on: September 11, 2023, 07:56:35 PM »
Thanks. Might it be added as an enhancement in the future?

2
Help / Re: Playlist Sounds
« on: September 11, 2023, 06:42:15 PM »
Is adding an event sound to the playlist selection even possible?

3
Help / Playlist Sounds
« on: August 08, 2023, 05:28:32 PM »
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

Code: [Select]
<onPlaylistEnter>
</onPlaylistEnter>

I tried adding a sound event within this construct:

Code: [Select]
<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:

Code: [Select]
<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"/>

...

Pages: [1]