It is possible to create tags and add to a event with javascript?

If it is possible please tell me how to do it. I want this feature to search my events easily in FMOD Studio.

As an alternative, it is possible to search an event by the value of its parameter?

Thanks in advance.

It is certainly possible to iterate through the events in your project and add specific tags!

We won’t write the script for you on this forum, but you could potentially modify an existing script to do what you want without too much trouble. Personally, I’d start with AddAhdsrToSelectedEvents.js, which comes included with FMOD Studio and already iterates through a set of events looking at their properties. You’ll want to modify it to add new members to each event’s “tags” property.

It’s not possible to search for events by the current values of their parameters, because parameter values aren’t serialized. This is because parameter values are supposed to change in real-time as your game runs, and can differ from event instance to event instance, so the values to which parameters are set in FMOD Studio usually have no impact on their behavior in your game.

However, you can search for events that contain a particular parameter: Just right-click on the parameter in the parmeters browser and select “Find References > In Events” from the context menu.