Entra:     


Forum: Old versions

Topic: Can I disable the jog wheels on my Reloop Beatpad
Is there a script verb that I can use on a skin or physical button to completely disable the jog wheels on my controller?

I have found on occasion (few thank god) that I have accidentally nudged a wheel when reaching for an adjacent button or encoder and of course, depending on it's current 'mode' it has had undesirable consequences!!

I've looked thru the 8.x verb list but nothing jumps out at me.

Cheers in advance.

B

 

Inviato Thu 10 Dec 15 @ 8:44 pm
Easiest way is to use the SCRATCH/VINYL button and set Jog to CD/Bend mode. I suppose minor movements/touch wont ruin your mix.

Hard way is to modify all the JOG/JOG_TOUCH Keys and have something like this..
JOG-> var 'jogoff' ? nothing : touchwheel
JOG_TOUCH--> var 'jogoff' ? nothing : touchwheel_touch

then you need to assign a controller/keyboard/custom button to toggle this variable ..
SOME_BUTTON--> toggle 'jogoff'
Replace jogoff with $jogoff if you need to have a global variable to turn both Jogs on/off
 

That's DJdad. Perfect.

Went with option 2.
 

djdad wrote :
Easiest way is to use the SCRATCH/VINYL button and set Jog to CD/Bend mode. I suppose minor movements/touch wont ruin your mix.

Hard way is to modify all the JOG/JOG_TOUCH Keys and have something like this..
JOG-> var 'jogoff' ? nothing : touchwheel
JOG_TOUCH--> var 'jogoff' ? nothing : touchwheel_touch

then you need to assign a controller/keyboard/custom button to toggle this variable ..
SOME_BUTTON--> toggle 'jogoff'
Replace jogoff with $jogoff if you need to have a global variable to turn both Jogs on/off


Thanks!
 

Dose anyone know if there’s a way to disable the lights on the jog wheels ???
 

You will need to edit the Mapping and delete/modify the actions assigned to keys with name starting with LED_RING_

You can completely delete their actions or query some variable if you want to toggle on/off.
E.g.
LED_RING_FXMODE from effect_slider 1 to var '$ringleds' ? nothing : effect_slider 1