By Reid Caulfield @Reid_Caulfield
Is there a wat to interrogate the open/closed state of a particular AS plugin windo and close it if it is open?
- samuel henriques @samuel_henriques
Hello Reid
Just replace
'RX 8 De-click'
with the name of plugin you want.const audioSuite = sf.ui.proTools.getAudioSuiteWindow('RX 8 De-click') if (audioSuite.exists) { audioSuite.windowClose(); }
- RReid Caulfield @Reid_Caulfield
thank you so much, Samuel!