Hello,
The article "How to control Pro Tools faders from any MIDI device" on soundflow's documents looks pretty simple. How do I control the faders using the faders of a Soundflow surface ? Or the Fader bank? I understand this is not the correct controller, not being able to know where the fader is but, is this possible?
Thank you
- Christian Scheuer @chrscheuer2020-08-31 08:15:07.328Z2020-08-31 08:25:39.720Z
There's a bit more to it, but you can start with the following script:
var value = Math.floor(event.arguments.value * 127); sf.midi.huiFader({ faderNum: 1, value: value, touchAndRelease: true, });
Have this script in the same package as your surface. Then, for your fader, set the On Touch Command to the script above.
Also make sure to follow the instructions from the article on how to set up the SoundFlow HUI peripheral in PT.
Now you can control the 1st HUI fader from a surface.
Christian Scheuer @chrscheuer2020-08-31 08:15:59.096Z
Note that in this example we're sending touch down, touch move, touch up events for each change of the value.
The better implementation would be to simulate touch down when you actually touch down on the fader, but that's a bit more involved, so I thought you should start with the above example and get that working first.samuel henriques @samuel_henriques
Hello Chistian,
thank you for the reply. This kinda works, on automation write mode only. I put your code on the On Value Command instead and a "scroll into view" script on the On Touch Command.
This will bank the first fader to the selected track, when I touch the surface fader.
Funny for now, might become useful....Christian Scheuer @chrscheuer2020-08-31 19:23:51.719Z
Nice progress!
To get better results, run this in your On Touch Start command:
sf.midi.huiFaderTouch({ faderNum: 1, value: true, });
This in the Value command:
var value = Math.floor(event.arguments.value * 127); sf.midi.huiFader({ faderNum: 1, value: value, });
And this in On Touch End:
sf.midi.huiFaderTouch({ faderNum: 1, value: false, });
samuel henriques @samuel_henriques
yep, much better👍
now just need a way to bank to selected track....Would be ice to bank the selected track without changing the position of tracks on edit /mix window.Christian Scheuer @chrscheuer2020-08-31 20:19:16.349Z
Great!
Unfortunately, I don't think that's possible - but let us know if you find a way :)samuel henriques @samuel_henriques
I don't have a controller to test this but avid control app behaviour give some clues.
Pro tools has this options:When edit and mix window follows bank selection are off I can scroll tracks on the avid control app and the tracks don't move.
I'm thinking there might be another command to let pro tools bank without scroll to view...Christian Scheuer @chrscheuer2020-08-31 21:06:24.540Z
Yea, but that command is likely in EUCON, which we cannot access currently.
- In reply tochrscheuer⬆:AAsi Tal @Asi_Tal
Hey,, Is there any way to control volume fader of a specific track name with midi cc ?