Is there a way to make the selected track go into playlist view?
Best O
- Christian Scheuer @chrscheuer2019-09-12 19:29:56.356Z
This one should do it:
sf.ui.proTools.selectedTrack.trackDisplaySelect({ displayPath: ['playlists'] });
Christian Scheuer @chrscheuer2019-09-12 19:30:38.477Z
Or like this in a macro:
- OOskar Skriver @Oskar_Skriver
Is it possible to make a command that changes between waveform view and playlist view?
Something like "depending on state"? or "if displaypath is playlist change to waveform"Christian Scheuer @chrscheuer2019-09-13 20:44:49.288Z
This should do it:
if (sf.ui.proTools.selectedTrack.invalidate().displaySelectorButton.value.value === "waveform") { sf.ui.proTools.selectedTrack.trackDisplaySelect({ displayPath: ['playlists'] }); } else { sf.ui.proTools.selectedTrack.trackDisplaySelect({ displayPath: ['waveform'] }); }
- KKenny Cheng @Kenny_Cheng
Hi Chris,
I just tried this script and it does work perfectly....
Except the Track Size is larger than "Medium".
Which I sometimes working in "Small" Track Size.Is it possible a bug I just discover?
Christian Scheuer @chrscheuer2019-12-04 13:22:01.632Z
Hi Kenny,
Yes you're right this won't work if the track size is too small. We should potentially resize the track size for you when running this command if the track is too small. Unfortunately due to the way SF interacts with PT that would be the only solution.
- In reply tochrscheuer⬆:RRiley Friesen @Riley_Friesen
I know this is really a really old post, but when I try this script the only thing it will do is change display to waveform, not open playlist or toggle between waveform/playlist view. Any thoughts on why?
- OOskar Skriver @Oskar_Skriver8
hmm, just tried it, and it works for me...
Soundflow v. 5.5.4
- In reply tochrscheuer⬆:
Bergatron Music @Bergatron_Music
Hi Christian. Where can I find this macro? Select Track Display
Christian Scheuer @chrscheuer2022-08-29 17:42:57.875Z
In a macro, click "Add action", then search for it :)
- In reply tochrscheuer⬆:OOskar Skriver @Oskar_Skriver
Great thanks! Building an ADR package.
Christian Scheuer @chrscheuer2019-09-13 07:14:49.577Z
Wohoo super cool