No internet connection
  1. Home
  2. How to

Closing specific AS plugin windows

By Reid Caulfield @Reid_Caulfield
    2021-08-02 18:33:18.174Z

    Is there a wat to interrogate the open/closed state of a particular AS plugin windo and close it if it is open?

    Solved in post #2, click to view
    • 2 replies
    1. samuel henriques @samuel_henriques
        2021-08-02 19:04:33.007Z

        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();
        }
        
        ReplySolution
        1. RReid Caulfield @Reid_Caulfield
            2021-08-02 19:53:00.707Z

            thank you so much, Samuel!