By samuel henriques @samuel_henriques
I would like to open the plugin window of the inserted plugin on a selected track by name.
I'm using by insert number, but sometimes it isn't on that slot.
I would prefer to open first instance of "plugin name" of selected track.
Thank you
- Christian Scheuer @chrscheuer2020-09-25 20:16:37.401Z
This should do it :)
const pluginName = 'EQ3 7-Band'; const group1Visible = sf.ui.proTools.getMenuItem('View', 'Edit Window Views', 'Inserts A-E').isMenuChecked; const group2Visible = sf.ui.proTools.getMenuItem('View', 'Edit Window Views', 'Inserts F-J').isMenuChecked; const insertButtons = sf.ui.proTools.selectedTrack.insertButtons.slice(group1Visible ? 0 : 5, group2Visible ? 10 : 5); const eqButton = insertButtons.find(b => b.exists && b.value.invalidate().value.includes(pluginName)); if (!eqButton) throw `Could not find plugin "${pluginName}" on selected track`; eqButton.elementClick();
I'll be adding this (and many other commands) to a template-based package sometime soon :)
samuel henriques @samuel_henriques
Hey Christian,
Working great, thank you.
- In reply tochrscheuer⬆:
samuel henriques @samuel_henriques
Wold it be possible to add
targetValue: "Enable",
Instead off toggle?
- In reply tochrscheuer⬆:JJonathan Grossman @Jonathan_Grossman
Is there a way to open ALL plug-ins on the selected track?
Christian Scheuer @chrscheuer2020-10-22 22:31:34.151Z
Hi Jonathan - please ask this in a new thread and we can get to it there. We use the status of a thread (solved or open) to direct our resources, so it's easier to manage if we get new questions in new threads :)