Hi Christian, is there a way to make a shortcut for Clear Solo (equivalent for clicking on little "Solo clear" button near the main counter or clicking on solo button with Alt (Mac) being held)?
Thanks in advance.
- Vladimir @poterukha
Vladimir @poterukha
But this shortcut you are requesting, I feel, is kind of core Pro Tools shortcuts with alt clickink on something and it is hardly change.
- In reply topoterukha⬆:
Stepan Sevastyanov @Stepan_Sevastyanov
Hi Vladimir, ive got an "Page not found, or Access Denied" via this link.
So you think there won't be any solution for this kind of shortcuts at all? Because of Avid's coding?
Christian Scheuer @chrscheuer2019-07-05 16:12:59.894Z
Hi @Stepan_Sevastyanov.
I've moved the post to the public part of the forum now, so the link should work.
There are 2 scripts, for Solo Clear and for Mute Clear in the linked post.Stepan Sevastyanov @Stepan_Sevastyanov
Thanks @chrscheuer but this script for Clear Solo doesnt work. Any ideas what could be wrong? Im on Pro Tools HD 12.5.2 now.
sf.ui.proTools.appActivateMainWindow();
sf.ui.proTools.mainWindow.counterDisplay.mouseClickElement({
relativePosition: { x: 299, y: 67 }
});- In reply tochrscheuer⬆:
Stepan Sevastyanov @Stepan_Sevastyanov
@chrscheuer however, on PT 2018.4.0 Ultimate it seems working... strange
Christian Scheuer @chrscheuer2019-07-06 17:21:25.077Z
This is one of the very very rare scripts where we have to rely on absolute positioning. The most likely reason why it's not working on 12.5.2 is that the Clear Solo button is located in a slightly different place.
Can you take a screenshot, full resolution and attach here, of 12.5.2?
- AIn reply toStepan_Sevastyanov⬆:alex alcanjim @alex_alcanjim
Just found a way to Clear Solo without rely on mouse clicking.
Maybe works for those who use X-OR Solo Mode...
sf.ui.proTools.menuClick({ menuPath: ["Options","Solo Mode","Momentary"], }); sf.wait({ intervalMs: 100, }); sf.keyboard.press({ keys: "shift+s", }); sf.wait({ intervalMs: 100, }); sf.ui.proTools.menuClick({ menuPath: ["Options","Solo Mode","X-OR (Cancels Previous Solo)"], });
Christian Scheuer @chrscheuer2020-09-03 18:28:14.473Z
NICE! Thanks for sharing :)
- CIn reply toStepan_Sevastyanov⬆:Coll Anderson @Coll_Anderson
I have less of an issue "clearing solos" as there is a command for that, I have a harder time making a "solo selected tracks" button on the Stream Deck. Which so far I have had really good luck setting up.
Chris Shaw @Chris_Shaw2020-10-05 16:07:58.073Z
This is quite easy. Shift-S will solo selected tracks in Pro Tools so the script would be:
sf.ui.proTools.appActivate(); sf.keyboard.press({ keys: "shift+s", });
However if you're trying to run this from the SF Editor it won't work. It must be triggered while ProTools is the focused / front-most application.
- CColl Anderson @Coll_Anderson
Yes! OK my scripting sucks but this rocks, thank you very much CS. Trade sound effects anytime!
- BIn reply toStepan_Sevastyanov⬆:Ben Rauscher @Ben_Rauscher
Maybe it's new to PT 2024.10, but there is an internal shortcut available, "Clear All Soloed Tracks." You just need to assign a Key Combination.