Is there a "Show Only VCA Tracks' command available here on SF?
Hi there,
I'm new to SF and I'm just evaluating the trial period to see if I can get all the functionality of the D-Control at home. One feature I find really useful is being able to 'Show Only VCA tracks' as well as Auxes, potentially folders too, which I can then spill using the controller. Is there a command for this in SF that I can't find? I've found 'Show only Selected Tracks' so I think it would maybe be a fairly similar command in terms of code, but my scripting skills are minimal.
Thank you,
H
- Kitch Membery @Kitch2022-02-10 11:45:51.877Z
Hi @Harry_Bristow,
This should do the trick :-)
sf.ui.proTools.appActivateMainWindow(); sf.ui.proTools.trackEnsureTrackListViewIsAccessible({ makeVisible: true }); sf.ui.proTools.mainWindow.trackListPopupButton.popupMenuSelect({ menuPath: ["Show Only", "VCA Masters"] });
Rock on!
Brett Ryan Stewart @Brett_Ryan_Stewart
Hey @Kitch ! What would this code look like if we only wanted it to show Aux's?
- In reply toKitch⬆:
Kitch Membery @Kitch2022-04-21 09:57:34.948Z
This should do the trick;
sf.ui.proTools.appActivateMainWindow(); sf.ui.proTools.trackEnsureTrackListViewIsAccessible({ makeVisible: true }); sf.ui.proTools.mainWindow.trackListPopupButton.popupMenuSelect({ menuPath: ["Show Only", "Aux Tracks"] });
- In reply toKitch⬆:TTom Weber @Tom_Weber
Ein sehr gutes Script. Kannst du darau auch ein Toggle Script machen, so dass man wieder zurück an den vorherigen Trackview kommt? Lieber Gruß
- H
Kitch Membery @Kitch2022-02-10 18:06:42.844Z
You’re welcome:-)
- In reply toHarry_Bristow⬆:Chris Andrews @Chris_Andrews
@Kitch
Thanks for posting this up. I have not tried this one yet, but wondering if this will do what the Avid Pro Tools app does?What I am looking to do is have a 2nd smaller streamdeck that would ONLY have a VCA deck assigned. For 3 years now I have used the Pro Tools App only for VCA spill. Using SF has been a game changer and I have only been on it for 5 days. Right now I have a template that loads and then I can import my tracks in like normal. Click a button and:
- create a folder
- Color code the tracks
- Move the tracks to folder
- Route the input and outputs
- Create a VCA and assign to a group
- Assign initial plugins
- Minimize the folder and move onto the next group
I would LOVE to be able to have a set of buttons that does a simple VCA spill of the VCA groups (along with hiding the VCA itself like the Pro Tools App does. I think it actually puts the VCA onto the DOCK fader but I use the older Artist Mix faders. Doing this spill allows me to quickly bounce between all the folders and quickly dial in a mix. The VCA Toggle works close but the VCA itself is on the console as well. Just looking to see if a VCA Spill with only the faders is possible?
Thanks