No internet connection
  1. Home
  2. Packages
  3. Dolby Atmos Music Mixing Track Panning

Skip toggle output window if already open

By Eli Savoie-Levac @Eli_Savoie_Levac
    2023-10-18 11:10:55.385Z

    Hello,
    I started to use the Dolby Atmos Music Mixing Track Panning package and it's awesome. I am just hoping to find a way to skip the first step (open track output window) if the track output window is already open.
    Right now if you run the script with the panner open, it fails because it closes the output window instead of opening it.

    I hope this makes sense.

    Thanks a lot

    Solved in post #4, click to view
    • 5 replies
    1. S
      SoundFlow Bot @soundflowbot
        2023-10-18 11:10:57.917Z

        Thanks for posting a question or an issue related to the 'Dolby Atmos Music Mixing Track Panning' package.
        This package is made by @David_Stagl. We're auto-tagging them here so that they will hopefully be able to help you.

        Please note, that the best way to get help with a script, macro or other content installed from the Store is to select the script you installed, then click the red Need help button, and then click "Get help with this script or macro".
        By using this workflow, the developer of the package will get access to more information so they'll be able to help you quicker.
        You can read more about how to best get help in this article: bit.ly/sfscripthelp

        1. David Stagl @David_Stagl
            2023-10-18 13:49:06.072Z

            Thanks for the feedback. I have also been looking for a way to skip that first step because it can be very annoying. Unfortunately, I'm not a coder, and I think this is something that would require a bit of code to implement. I keep waiting for someone else to share better scripts with a more elegant way to do this.

            1. This should do ya. I use it a lot in my Any ATMOS Panner Knob Package.

              if (!sf.ui.proTools.mainTrackOutputWindow.groups.first.exists) {
                      sf.ui.proTools.selectedTrack.trackOutputToggleShow();
                  }
              
              ReplySolution
              1. EEli Savoie-Levac @Eli_Savoie_Levac
                  2023-10-19 10:12:00.287Z

                  Thank you so much! that did it.

                  Cheers

                  1. David Stagl @David_Stagl
                      2023-10-19 11:12:46.977Z

                      Thanks, Owen!