FMOD Event logic - pls help

I have are events, for example, EV1 and EV2 (that are about 5 seconds long).
Both events can be triggered arbitrarily - including simultaneously.
I need the EV1 event to not start playing when the EV2 event is played. How to do it?

Provided you have created the two events as separate events (rather than as nested or referenced events), it should be possible to play either of them without playing the other.

When you create an instance of an event using Studio::EventDescription::createInstance, you will need to identify the event by its path or GUID, and the function will return a handle that you can subsequently use to interact with that specific event instance.

Is there some specific part of this process that you’re having trouble with?