No internet connection
  1. Home
  2. Support

I had "Click Menu Item" Command in Pro Tools to open the menu "Pro Tools" -> "Preferences..." This worked well but when Pro Tools changed preferences to "Settings..." I changed the Preferences to sett

By Adam David Smith @AdamDavidSmith
    2023-12-20 19:48:31.295Z

    I had "Click Menu Item" Command in Pro Tools to open the menu "Pro Tools" -> "Preferences..." This worked well but when Pro Tools changed preferences to "Settings..." I changed the Preferences to settings in the macro but it have not been able to get it to funcion yet.

    System Information

    SoundFlow 5.4.4

    OS: darwin 22.6.0

    ProductName: macOS
    ProductVersion: 13.5
    BuildVersion: 22G74

    Steps to Reproduce

    1. Create macro in pro tools
    2. Click Menu Ite
    3. Application - Pro Tools
    4. "Pro Tools"
    5. "Settings..."

    Expected Result

    it to open the pro tools settings

    Actual Result

    Nothing happens.

    Workaround

    I have tried with the three dots at end and without. This has occured through a few different version of soundflow and multiple versions of pro tools.

    Other Notes


    Links

    User UID: sw9r3sd7zWOInFbiTPdiHx4L1AK2

    Feedback Key: sffeedback:sw9r3sd7zWOInFbiTPdiHx4L1AK2:-Nm7lR9f8yN5opKTmIKA

    Feedback ZIP: OvjhaN0ApXfTxZ82b4TTKwz1MKBOIS5Aq0ESSJt2i7llP2bbLWM9ejO4mkP5oGcffvM3dPVGWCEYpXIuPGF7F9XqURJOcUTMy5lh/qnxk78sdvb9vlXuuDOSMiKi10pK4xksG7bt5leem0EG+ZgnCRxy6aw+tHCMflM5TeDsB/TpdE279cv+rjtiYbq0gHzkjYicj5giB46S9arrOgIEHv1N2wKUD3D0bxi9VgW71glIlWXZbO29pDjK3yRcnJowc5JzCjqNNQhrwsjcmBFReokHRiKy1+kvcVAFKrmwEQRdhwpCUqy2w5eQ9+pmf9U3Hd9r0D2ErevY99S1INyIBw==

    • 1 replies
    1. Hey @AdamDavidSmith, it's because they're using the ellipsis character ("…") instead of three actual periods ("..."). They look similar but one is a single character while the other is three. Avid has been inconsistent with their usage of this so anytime three periods don't work, try using the ellipsis character instead, which you can copy paste from this post.

      sf.ui.proTools.menuClick({ menuPath: ["Pro Tools", "Settings…"]});
      

      Although I suggest pulling up the preferences through the following menu path instead, which has remained consistent throughout the years:

      sf.ui.proTools.menuClick({ menuPath: ["Setup", "Preferences..."]});
      

      (this is a good example of the inconsistency I was talking about—here we have three periods instead of the ellipsis character)