Insert plugin to next free insert-Different approach?
Hi,
I've seen many different solutions to his but none have worked great for me.
I have several suspects that interferes. Pro tools helper bug, native/DSP systems, mono/stereo/multi channel etc.
Wouldn't it make sense to use the "search..." function? Maybe that makes it less menu structure dependent.
That way you don't have to specify category/manufacturer etc.
This is my wish list:
- Insert plugin on next available slot
- Works on both native and DSP systems
- Works on both stereo and mono(mono and multi mono is fine)
- Multiple tracks(ideally)
Thanks! :)
- TTJ Allen @TJ_Allen
I'm not completely sure what you're after, but I have this mapped to the '§' key on my keyboard, so it will find the next free slot on the curently selected track, and then open the search bar so I can type what I want to add. Maybe this helps.
sf.ui.proTools.appActivateMainWindow(); function getFirstFreeInsertIndex() { var btns = sf.ui.proTools.selectedTrack.invalidate().insertButtons; for (var i = 0; i < 10; i++) if (btns[i].value.invalidate().value === "unassigned") return i; throw 0; } sf.ui.proTools.selectedTrack.insertButtons[getFirstFreeInsertIndex()].popupMenuSelect({ menuPath: ['search...'] });
- SStefan Boman @Stefan_Boman
Sorry, my eagerness smeared my clarity ;)
I tested that script before and that's actually the script that made me think about this way to approach this problem.
I want to have hotkeys for different plugins. For example Fabfilter Pro Q3.
Found many similar scripts but none works that great for me.Is it possible to extend that script and enter the name of a specific plugin in that script?
Most scripts I've seen goes thru the menu structure to navigate to the plugin.
Which might cause problems since the menu structure looks different depending on native/DSP or track width.
Thats why I wonder if going thru "search" function would reduce such problems.Thanks Tim!
- SIn reply toStefan_Boman⬆:Stefan Boman @Stefan_Boman
@TJ_Allen
Do you think that's possible?
To extend that search script of yours and specify a certain plugin?
Would be highly useful even thou it would be even cooler if it worked on multiple tracks ;)- In reply toStefan_Boman⬆:
samuel henriques @samuel_henriques
Hello Stefan
Is this what you are looking for?
https://soundflow.org/store/insert-plugin-on-next-free-slot-intelligent