No internet connection
  1. Home
  2. How to

(PT) Clear solo shortcut

By Stepan Sevastyanov @Stepan_Sevastyanov
    2019-07-03 16:29:10.578Z

    Hi Christian, is there a way to make a shortcut for Clear Solo (equivalent for clicking on little "Solo clear" button near the main counter or clicking on solo button with Alt (Mac) being held)?
    Thanks in advance.

    Solved in post #2, click to view
    • 13 replies
    1. Vladimir @poterukha
        2019-07-03 20:47:56.651Z
        ReplySolution
        1. Vladimir @poterukha
            2019-07-03 20:56:20.099Z

            But this shortcut you are requesting, I feel, is kind of core Pro Tools shortcuts with alt clickink on something and it is hardly change.

            1. In reply topoterukha:

              Hi Vladimir, ive got an "Page not found, or Access Denied" via this link.

              So you think there won't be any solution for this kind of shortcuts at all? Because of Avid's coding?

              1. Hi @Stepan_Sevastyanov.
                I've moved the post to the public part of the forum now, so the link should work.
                There are 2 scripts, for Solo Clear and for Mute Clear in the linked post.

                1. Stepan Sevastyanov @Stepan_Sevastyanov
                    2019-07-05 16:30:53.324Z2019-07-05 16:39:56.856Z

                    Thanks @chrscheuer but this script for Clear Solo doesnt work. Any ideas what could be wrong? Im on Pro Tools HD 12.5.2 now.

                    sf.ui.proTools.appActivateMainWindow();
                    sf.ui.proTools.mainWindow.counterDisplay.mouseClickElement({
                    relativePosition: { x: 299, y: 67 }
                    });

                    1. In reply tochrscheuer:

                      @chrscheuer however, on PT 2018.4.0 Ultimate it seems working... strange

                      1. This is one of the very very rare scripts where we have to rely on absolute positioning. The most likely reason why it's not working on 12.5.2 is that the Clear Solo button is located in a slightly different place.
                        Can you take a screenshot, full resolution and attach here, of 12.5.2?

                2. A
                  alex alcanjim @alex_alcanjim
                    2020-09-02 15:10:42.928Z2020-09-03 18:28:09.493Z

                    Just found a way to Clear Solo without rely on mouse clicking.

                    Maybe works for those who use X-OR Solo Mode...

                    sf.ui.proTools.menuClick({
                        menuPath: ["Options","Solo Mode","Momentary"],
                    });
                    
                    sf.wait({
                        intervalMs: 100,
                    });
                    
                    sf.keyboard.press({
                        keys: "shift+s",
                    });
                    
                    sf.wait({
                        intervalMs: 100,
                    });
                    
                    sf.ui.proTools.menuClick({
                        menuPath: ["Options","Solo Mode","X-OR (Cancels Previous Solo)"],
                    });
                    
                    1. NICE! Thanks for sharing :)

                    2. C
                      Coll Anderson @Coll_Anderson
                        2020-10-05 12:36:52.998Z

                        I have less of an issue "clearing solos" as there is a command for that, I have a harder time making a "solo selected tracks" button on the Stream Deck. Which so far I have had really good luck setting up.

                        1. This is quite easy. Shift-S will solo selected tracks in Pro Tools so the script would be:

                          sf.ui.proTools.appActivate();
                          sf.keyboard.press({
                              keys: "shift+s",
                          });
                          

                          However if you're trying to run this from the SF Editor it won't work. It must be triggered while ProTools is the focused / front-most application.

                          1. CColl Anderson @Coll_Anderson
                              2020-10-05 19:45:34.061Z

                              Yes! OK my scripting sucks but this rocks, thank you very much CS. Trade sound effects anytime!

                          2. B
                            Ben Rauscher @Ben_Rauscher
                              2024-11-20 21:52:43.186Z

                              Maybe it's new to PT 2024.10, but there is an internal shortcut available, "Clear All Soloed Tracks." You just need to assign a Key Combination.