Hi,
Is there a script, or a macro for removing plugin insert ?
(for example insert 1, or for all insert of the track)
Thanks
- Christian Scheuer @chrscheuer2020-02-05 18:28:27.155Z
I think something like this should work (not tested in Pro Tools, just written from memory):
sf.ui.proTools.selectedTrack.trackInsertOrSendSelect({ insertOrSend: 'Insert', pluginNumber: 1, pluginPath: ['no plug-in'] });
- JIn reply toJON_GOC⬆:JON GOC @JON_GOC
Thanks Christian!
with 'no insert' it workssf.ui.proTools.selectedTrack.trackInsertOrSendSelect({ insertOrSend: 'Insert', pluginNumber: 1, pluginPath: ['no insert'] });
Brian Steckler @Brian_Steckler
Is there a way to make this work on the Selected Insert as opposed to specific slots?
- JIn reply toJON_GOC⬆:JON GOC @JON_GOC
And if I want a script that remove all inserts on a track,
should I write it for each plugin number or is there a shorter way ?Christian Scheuer @chrscheuer2020-02-06 10:43:39.667Z
Nice!
You can loop through 1-5 like this:for(var i=1; i<=5; i++) { sf.ui.proTools.selectedTrack.trackInsertOrSendSelect({ insertOrSend: 'Insert', pluginNumber: i, pluginPath: ['no insert'] }); }
- JJON GOC @JON_GOC
Great, thank you Christian,
the process is a bit slow, cause it's one track after the other,
but it works !Christian Scheuer @chrscheuer2020-02-06 17:15:00.916Z
This should do it for all selected tracks in one go (one for each plugin number, that is)
for(var i=1; i<=5; i++) { sf.ui.proTools.selectedTrack.trackInsertOrSendSelect({ insertOrSend: 'Insert', pluginNumber: i, selectForAllSelectedTracks: true, pluginPath: ['no insert'] }); }
- JJON GOC @JON_GOC
Thank you Christian,
it's not really better, Protools lost itself between the plugin slot numbers...
But I guess it's not really possible since there is no command to do this in PT- SSreejesh Nair @Sreejesh_Nair
While you can script it, the easiest way would be to have a track preset that has no plugins and recall that on selected tracks. :)
- JJON GOC @JON_GOC
Oh yes of course !
Thank you Christian ;)
- In reply tochrscheuer⬆:TThomas Gloor @Thomas_Gloor
hey @chrscheuer !
I have a related question. Do you have an idea how I check if a track has a HARDWARE insert (I/O), and if so, bypass or inactivate all plugins that are before or after?
Thanks!