Solved Call ParametriqEQ Bands
-
Hi there, how do I call up the respective bands of the ParametriqEQ? 0,1,2,3,4. I want to create a button with which I can reset the frequencies and the gain to a certain value. For example, band 0 is highpass and should be reset to 20.0Hz and gain to 0.00, band 1 is lowpass and should be reset to 20.000kHz and gain to 0.00.
Thank you!
-
-
@treynterrio I'm using this but when I press the reset Button it only changes the Frequency
inline function onresetButtonControl(component, value) { if (value) { ParametriqEQ1.setAttribute(ParametriqEQ1.Frequency + 1, 20.0); ParametriqEQ1.setAttribute(ParametriqEQ1.Gain + 1, 0.00); } } Content.getComponent("resetButton").setControlCallback(onresetButtonControl);
-
You need to use the band offset - https://forum.hise.audio/topic/530/gui-for-the-parametric-eq/21?_=1717322645375
-
@d-healey perfect Thank you!!!
-