Scroll from Middle of Playlist Editor to VERY TOP (Top Track Scroll)
Alright! Kind of a weird one here, but here's the scenario...
When I am in the middle of editing a playlist, I might want to jump up to the top playlist and check it. Or more specifically, I have a playlist toggle command I utilize quite a bit, and in order to utilize it, I have to scroll up to the very top playlist of the track in order to execute it.
I was wondering if there's a South Flow script or command that would work to scroll the very top Playlist into view. One workaround is to maybe select the track above it and then quickly select the track after (aka the track I am currently editing).
The video explains more below.Hopefully this makes sense!
Jordan
https://youtu.be/W9gBKOz3ik4
Necessary Noise
- Christian Scheuer @chrscheuer2022-03-30 09:27:49.743Z
Hm this appears to happen because Link Track and Edit Selection doesn't function properly if the edit selection is on a playlist :/
Trying to come up with workarounds but it's like the Edit selection completely ignores track selections as long as the edit selection is on a playlist, so there appears to be no way to force the edit selection to move to a regular track, which is what we need to make it work again.Christian Scheuer @chrscheuer2022-03-30 09:34:26.694Z
The only thing I can make work here is to press P repeatedly until the actual track is selected again.
Something like this:
var selectedTrackName = sf.ui.proTools.selectedTrack.normalizedTrackName; while(true) { sf.keyboard.press({ keys: 'p' }); var newName = sf.ui.proTools.selectedTrack.normalizedTrackName; if (newName !== selectedTrackName) break; } sf.keyboard.press({ keys: 'semicolon' });
Won't work if the track is the first track in the session, btw.