No internet connection
  1. Home
  2. How to

Search plugins one extra click now plus fonts are ugly (:

By Tom Mochiach @Tom_Mochiach
    2022-03-24 21:53:22.697Z

    Hi again
    Anyone can help with how to search quickly ?
    now that the fonts becomes grey and smaller ,one needs to click on search option in the menus (insert plugin)
    No more just one click and then just write the name of the plug-in , which actually is one of the most used features in pro tools
    And as I mentioned, fonts are rather small and ugly
    Thank you

    • 10 replies
    1. Kitch Membery @Kitch2022-03-24 22:02:32.000Z2022-03-26 18:03:34.287Z

      Hi @Tom_Mochiach,

      Thanks for asking. Yes this is a known issue. Click here for more information about the Pro Tools Menus Issue and workarounds;

      :-)

      1. In addition to the solutions mentioned in the link above you can also use this script and assign it to the tab key when PT is focused. Click on a insert or send and hit tab when the menu pops up . The search field will open.

        (From this post: How to work around the PT legacy menu not supporting Tab to search.)

        function getMenuAtMousePosition() {
            var mp = sf.mouse.getPosition().position;
            var element = sf.ui.root.getElementAtPosition(mp.x, mp.y);
            while (element.role == 'AXMenuItem') {
                element = element.getParentElement();
            }
            if (element.fullRole == 'AXMenu' || element.fullRole == 'AXWindow:AXDialog')
                return element;
            return null;
        }
        
        var menu = getMenuAtMousePosition();
        if (menu) {
            menu.getMenuItem('search...').elementClick();
        }
        else sf.keyboard.press({ keys: 'tab' }); //Fall-through
        
        1. TTom Mochiach @Tom_Mochiach
            2022-05-16 08:02:43.882Z

            any way to hit tab without clicking on insert ?
            (when track is chosen)

            1. Not really, When a track is selected and tab is hit PT executes a tab to transient.

              1. TTom Mochiach @Tom_Mochiach
                  2022-05-16 18:19:46.245Z

                  How about control tab or anything alike?

            2. In reply toKitch:
              TTom Mochiach @Tom_Mochiach
                2022-03-25 23:04:37.784Z

                Interesting, I’ll try it out
                Thank you so much

              • T
                In reply toTom_Mochiach:
                Tom Mochiach @Tom_Mochiach
                  2022-05-16 18:23:59.847Z

                  Also,
                  Now In pro tools studio, the fonts are even worse, they are white and They are hard to see.
                  So the Tab search is a great solution.
                  But, anything for searching buses and outputs ?
                  Thank you

                  1. Hi Tom,

                    Check these built-in commands in the Pro Tools package under "Sends":

                    Run any of these with a keyboard shortcut (for example using the ones I have assigned here) and it'll automatically display a searchable popup with sends you can assign. The same functions are available for outputs as well.

                  2. T
                    In reply toTom_Mochiach:
                    Tom Mochiach @Tom_Mochiach
                      2022-05-17 08:45:33.288Z

                      sorry if I was not clear
                      I meant searching the output of the track

                      1. The same functions are available for outputs as well.

                        See: