hey here's a simple one i've desired for a while, not sure if it would be possible.
currently the built in soundflow commands for Toggling Bypass of a specific # insert slot on the selected track, only will work on a single track at a time, and will trigger the top track if you have multiple selected.
I'd love for these commands to be able to trigger on multiple tracks simultaneously if you have more then one track selected.
- Progress
- Christian Scheuer @chrscheuer2019-04-16 20:52:40.490Z
You can do it like this:
sf.ui.proTools.appActivate(); sf.ui.proTools.selectedTrack.insertButtons[0].mouseClickElement({ isCommand: true, isOption: true, isShift: true, });
Note the insertButtons array is 0-indexed, meaning index 0 is the 1st insert, 1 is the 2nd insert, and so forth.
- SSean @SeanH
I published my first package with a set of these for each insert :)
- Christian Scheuer @chrscheuer2019-04-18 13:41:11.826Zreplies toSeanH⬆:
Awesome, @SeanH! Happy to hear it :)
Did you see you can also add a nice cover photo to your package? This is what you'll see on top of all of the packages I built, just to make them appealing to end users:
It's the right most toolbar button:
- SSean @SeanH
ya i thought about it, this one was just so basic wasn't sure what the picture would be haha. maybe just a picture of the pro tools inserts. I'll give it a try.
- HHendrick Valera @Hendrick_Valera
Is there a way to edit this script to bypass ALL the plugins in a track selection? or does it work only one insert at a time?