No internet connection
  1. Home
  2. How to

Select Drop down menu

By mikkeljm @mikkeljm
    2022-03-09 06:02:10.999Z

    Hey Guys.

    Im trying to selcet the drop down meny in the copy to send meny. I cant seem to get it to work. Lets say i would choose copy to send E of all selected tracks. How do i incorpotate that in my, im sure, very simple and clumsy macro? Iv turned the macro in to a script below.

    //Calling command "Automation - Copy to Send..." from package "undefined" (installed from user/pkg/version "srAasovvDiQacRZ2mcId4RrOA8R2/ckp49i4j60000a2100yfwywgf/ckyu15xww00004v10dq15rpgq")
    sf.soundflow.runCommand({
    commandId: 'user:ckp49i4j60000a2100yfwywgf:ckt90h5f100008a10ilhfochy#cktc0awx900019r10cv12vizf',
    props: {}
    });

    sf.wait({
    intervalMs: 100,
    });

    sf.ui.proTools.windows.whoseTitle.is("Copy To Send").first.checkBoxes.whoseTitle.is("Current Value").first.checkboxSet({
    targetValue: "Enable",
    });

    sf.wait({
    intervalMs: 100,
    });

    sf.ui.proTools.windows.whoseTitle.is("Copy To Send").first.checkBoxes.whoseTitle.is("Volume").first.checkboxSet({
    targetValue: "Enable",
    });

    sf.wait({
    intervalMs: 100,
    });

    sf.ui.proTools.windows.whoseTitle.is("Copy To Send").first.checkBoxes.whoseTitle.is("Pan").first.checkboxSet({
    targetValue: "Enable",
    });

    sf.wait({
    intervalMs: 100,
    });

    sf.ui.proTools.windows.whoseTitle.is("Copy To Send").first.checkBoxes.whoseTitle.is("Mute").first.checkboxSet({
    targetValue: "Enable",
    });

    sf.wait({
    intervalMs: 100,
    });

    sf.ui.proTools.windows.whoseTitle.is("Copy To Send").first.buttons.whoseTitle.is("OK").first.elementClick();

    • 3 replies
    1. Hey @mikkeljm, you can use the "Open & Select Item in Popup Menu" action for this.

      All you have to do is Pick the popup button for the sends in the Copy to Send window and then fill in which Send you'll like SoundFlow to choose. Should look like this:

      1. Mmikkeljm @mikkeljm
          2022-04-04 20:08:12.703Z

          Hey Raphael.

          I just noticed I never replied to your answer here.
          First of all. Thanks for the advice. And I’m sorry I didn’t answer right away. I’ve been so crazy busy the last few months and on top of all the work I managed to get a descent SoundFlow workflow up and running.
          This is by far the greatest thing that’s happened to my workflow in years.

          Thanks
          Mikkel

          1. Glad to hear!!