I feel like this may be possible with scripting but haven't figured it out.
I'd love a command similar to close all floating windows, except it ONLY closes audio suite windows, not real-time insert plugin windows that I have open.
I run with a number of metering plugins that i always have open and not-targeted on a second display and I never really want to close. But then when I'm opening a bunch of differerent audio suite windows things can get messy and I want close just the audio suite windows that are open but leave my metering plugins in place.
- Christian Scheuer @chrscheuer2019-04-16 20:45:39.219Z
This indeed is an important command to have - I use one all the time myself.
Here's a script that will do it for you:
//Close audio suite windows sf.ui.proTools.floatingWindows.whoseTitle.startsWith('Audio Suite').allItems.forEach(function (win) { try { win.windowClose(); } catch (err) { } }); //Close Altiverb IR Browser sf.ui.proTools.windows.whoseTitle.startsWith('Altiverb').allItems.forEach(function (win) { try { win.windowClose(); } catch (err) { } });
Note I made a separate script to close Altiverb's IR browser since it will have a different title, not starting with "Audio Suite"
- SSean @SeanH
thanks!