Accesso rapido:  

Forum: VirtualDJ Technical Support

Topic: VDJScript: Use the jogwheel on right side of controller to control deck 1

Questo argomento è obsoleto e potrebbe contenere informazioni obsolete o errate.

I'm making a controller mapping for preparing tracks. I want the jog wheel (it's a touchwheel) on the right hand side to adjust the beat grid.
The following works, but both jog wheels adjust the grid. I want the left hand side to skim the track as normal.
deck 1 adjust_cbg

Thanks!
 

Inviato Wed 12 May 21 @ 2:12 pm
locoDogPRO InfinityModeratorMember since 2013
device_side 'left' ? deck 1 adjust_cbg : deck 1 goto

maybe this...
 

Inviato Wed 12 May 21 @ 2:15 pm
djdadPRO InfinityDevelopment ManagerMember since 2005
I see in your account that you use the Hercules StarLight. If so, you can assign these keys as..
JOG:
device_side 'left' ? touchwheel : adjust_cbg 


JOG_OUT
device_side 'left' ? touchwheel : adjust_cbg 


JOG_TOUCH
device_side 'left' ? touchwheel_touch : nothing 



SHIFT_JOG

device_side 'left' ? touchwheel 'search' : set_bpm 


SHIFT_JOG_TOUCH
device_side 'left' ? touchwheel_touch 'search' : nothing 


The SHIFT +JOG in code above is to adjust the width of the CBG meaning the BPM, but if u dont want this, just ignore the SHIFT_ keys above.

If you want more precise CBG adjustments , you can replace adjust_cbg in code above with ..
param_bigger 0 ? adjust_cbg +0.2% : adjust_cbg -0.2% (or other %value)
 

Inviato Wed 12 May 21 @ 2:31 pm
Exactly what I needed. Thank you!
 

Inviato Wed 12 May 21 @ 2:45 pm


(Vecchi argomenti e forum sono automaticamente chiusi)