regex select not
-
I try to select all Effects except the FX slots
So if I useSynth.getAllEffects("")
I will get All Effects, how do I select all Effects except the ones with an underscore in there names "_"
-
@ulrik said in regex select not:
how do I select all Effects except the ones with an underscore in there names "_"
I just saw this thread for the first time, better late than never :) I'm sure you've figured it out by now but maybe this will help someone else.
const fx = Synth.getAllEffects(""); for (i = 0; i < fx.length; i++) if (fx[i].getId().indexOf("_") != -1) fx.remove(fx[i]);