No internet connection
  1. Home
  2. How to

How to select Waveform in the track display

By Tom Cross @Tom_Cross
    2021-03-22 21:19:59.491Z

    Hello, I'm trying to write a script to select the 'waveform' display option on the track view in Protools. I think I'm nearly there with the code just missing something. Can you help?

    sf.ui.proTools.selectedTrack.trackDisplaySelect.waveform();

    • 2 replies
    1. samuel henriques @samuel_henriques
        2021-03-22 21:38:04.713Z2021-03-22 21:50:04.222Z

        Hey @Tom_Cross,

        try this:

        sf.ui.proTools.selectedTrack.trackDisplaySelect({displayPath:["waveform"]})
        

        for more info on how to sort these kind of problems, check out these videos:
        How to quote code in the SoundFlow forum.

        1. T
          In reply toTom_Cross:
          Tom Cross @Tom_Cross
            2021-03-22 21:41:24.686Z

            many thanks samuel