No internet connection
  1. Home
  2. How to

make select track playlist view

By Oskar Skriver @Oskar_Skriver
    2019-09-12 08:57:34.702Z

    Is there a way to make the selected track go into playlist view?

    Best O

    Solved in post #2, click to view
    • 12 replies
    1. This one should do it:

      sf.ui.proTools.selectedTrack.trackDisplaySelect({
          displayPath: ['playlists']
      });
      
      ReplySolution
      1. Or like this in a macro:

        1. OOskar Skriver @Oskar_Skriver
            2019-09-13 08:34:03.745Z

            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"

            1. 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']
                  });
              }
              
              1. KKenny Cheng @Kenny_Cheng
                  2019-12-04 13:20:48.495Z

                  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?

                  1. 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.

                  2. In reply tochrscheuer:
                    RRiley Friesen @Riley_Friesen
                      2024-03-06 18:44:41.806Z

                      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?

                      1. OOskar Skriver @Oskar_Skriver8
                          2024-03-06 19:45:08.798Z

                          hmm, just tried it, and it works for me...
                          Soundflow v. 5.5.4

                    • In reply tochrscheuer:
                      Bergatron Music @Bergatron_Music
                        2022-08-14 19:49:10.921Z

                        Hi Christian. Where can I find this macro? Select Track Display

                        1. In a macro, click "Add action", then search for it :)

                      • In reply tochrscheuer:
                        OOskar Skriver @Oskar_Skriver
                          2019-09-13 07:07:08.654Z

                          Great thanks! Building an ADR package.

                          1. Wohoo super cool