Sign In:     


Forum: Old versions

Topic: last tweak

This topic is old and might contain outdated or incorrect information.

var $shift3 ? action_deck 1 ? deck active loop_move : deck active loop_length : var $shift2 ? deck active effect active ? device_side 'left' ? deck active effect slider 1 : effect slider 2 : jogwheel

this is my jog syntax.
The last thing is : $shift2 need to be active when i want jogwheel to do his job.
It's like a 3rd request, but in fact i want to jogwheel when no $shift are active.

This is RMX controller
 

Posted Thu 25 Nov 10 @ 5:28 pm
Try this ..
var $shift3 ? action_deck 1 ? deck active loop_move : deck active loop_length : var $shift2 ? deck active effect active ? device_side 'left' ? deck active effect slider 1 : effect slider 2 : nothing : jogwheel

 

I think you need var_equal "$shift#". Then you need to make the "set $shift2" happen only when the you have turned the effect on. Like this: EFFECT BUTTON - effect active & set $shift2

That way you can eliminate the second question after "$shift2". Then use "action deck". This would be my guess:

var_equal "$shift3" ? action_deck 1 ? deck active loop_move : deck active loop_length : var_equal "$shift2" ? action_deck 'left' ? deck active effect slider 1 : effect slider 2 : jogwheel

You could also try this with the "var $shift#" method (like you started with) if it does not work. Also, I did not use my RMX jogs for loop move, but I did use this script for the effect slider control and it did work:

var $d1effect ? action_deck 1 ? deck 1 effect default slider 1 : deck 1 effect default slider 2 : var $d2effect ? action_deck 1 ? deck 2 effect default slider 1 : deck 2 effect default slider 2 : jog_wheel

Good luck, this should get you close.
 



(Old topics and forums are automatically closed)