Parametric EQ - saving and loading "preset shapes"
-
I seem to remember there was a way to save and load parametric EQ "shapes" using base64 but I cant find it in the fourm search - am I wrong ? if not how's this done?
-
Perhaps these functions?
-
..and ten mins of additional searching ...and I have it...
const var ParametriqEQ1 = Synth.getEffect("Parametriq EQ1"); var myState = ParametriqEQ1.exportState(); Console.print(myState); inline function onButton1Control(component, value) { ParametriqEQ1.restoreState(myState); }; Content.getComponent("Button1").setControlCallback(onButton1Control);