Hi. I am having some trouble with some command.
The ENC_TRACK is mapped by default browser_scroll. I haved mapped PROGRAM button as effect select +1, and MODE as toggle "shift" while pressed.
I want ENC_TRACK, the only available knob, to modify the parametter of the active effect while shift is pressed. Something like this...
browser_scroll & param_multiply 5% while_shift_preees & effect slider
, but I don`t know what to put there for this to work.
Can anyone help, please?
The ENC_TRACK is mapped by default browser_scroll. I haved mapped PROGRAM button as effect select +1, and MODE as toggle "shift" while pressed.
I want ENC_TRACK, the only available knob, to modify the parametter of the active effect while shift is pressed. Something like this...
browser_scroll & param_multiply 5% while_shift_preees & effect slider
, but I don`t know what to put there for this to work.
Can anyone help, please?
Inviato Sun 01 Apr 12 @ 12:09 pm
it works like this
var 'shift' ? action if shifted : action if not shifted
so for your example it would be like this.
var 'shift' ? param_multiply 5% & effect slider 1 : browser_scroll
you should register your version of vdj pro so you have access to all the extras
var 'shift' ? action if shifted : action if not shifted
so for your example it would be like this.
var 'shift' ? param_multiply 5% & effect slider 1 : browser_scroll
you should register your version of vdj pro so you have access to all the extras
Inviato Sun 01 Apr 12 @ 12:38 pm
Thanks a lot!
Inviato Sun 01 Apr 12 @ 12:44 pm