By yianniap @yianniap
I'm wondering if there is a way to toggle on/off the frequency analyzer in FabFilter's Pro-Q3?
I have a hunch maybe midi might be the way to do it, but I'm confused about how to have soundflow send midi cc.
Pro-Q3 has the ability to "Midi Learn" the "pre analyzer" button which toggles it off and on.
I'm using a stream deck xl
Any ideas?
- samuel henriques @samuel_henriques
Hello Yianniap,
I don't know any shortcut for this, and pro tools doesn't show to SF the plug-in buttons. So the solution is to click relative to something SF can read.
This is not great but works. Be aware that this presumes you have both pre and post buttons active/inactive.
Let me know if this helps.
const element = sf.ui.proTools.windows.whoseTitle.is("Plug-in: FabFilter Pro-Q 3").first.groups.whoseTitle.is("FXTDMEditView").first //Open analyzer menu element.mouseClickElement({ relativePosition: { "x": 760, "y": 706 } }); sf.wait({ intervalMs: 300 }) // Click Pre element.mouseClickElement({ relativePosition: { "x": 670, "y": 209 } }); // Click Post element.mouseClickElement({ relativePosition: { "x": 725, "y": 209 } }); //Close analyzer menu element.mouseClickElement({ relativePosition: { "x": 760, "y": 706 } });