Home › Forums › Macros › new user macro help › Reply To: new user macro help
14 February 2019 at 2 h 17 min
#3636
Philippe Ollivier
Keymaster
“But this takes me to the next related question. The Midi volume is master, all tracks or a specific track. How can i use a volume peddle on just the selected track?”
1 – Connect the midi volume pedal to Midi/Variables for macro $midiv_cc1$
2 – make this macro :
//**************** Volume to Selected Track ***************
DoRepeat
TrackVolume trk_sel = {scale($midiv_cc1$, 0, 127, -76, 0)}
Sleep 50
While true
//**************** End ***************
3 – Launch the macro, change the value of $midiv_cc1$ with the pedal.
Philippe