Find the ID from an modulator dynamically?
-
In this example I have Script Processor 1 in the same sound source container as the modulator "AHDSR Envelope 1"
Is it possible for the Script Processor to dynamically find the right Id of the AHDSR Envelope?Something like .getModulatorsInChain(1) or something?
If it's possible, how would you do that?
-
@ulrik Yes, use
Synth.getIdList("AHDSR Envelope");
-
@d-healey Beautiful, thanks!