for some reason i cannot set the paddles to control the correct deck,
paddle 1 is controlling deck 3, paddle 2 is controlling deck 1. all other controls are working fine.
[device_side 'left'] is for paddle 2 and [device_side '1'] is not working.
Where is the problem?
Thanks
paddle 1 is controlling deck 3, paddle 2 is controlling deck 1. all other controls are working fine.
[device_side 'left'] is for paddle 2 and [device_side '1'] is not working.
Where is the problem?
Thanks
Posted 2 days ago @ 6:51 am
What is the option mxerOrder set to?
By default, I think it's set to 3124 (describing channel control from left to right) , so if you are describing the paddles and what they control from left to right (and unless I'm misunderstanding the problem), then it sounds like correct behavior (paddle 1 will control deck 3 and paddle 2 will control deck 1).
You can change mixerOrder to be 1234 to have that order of deck control from left to right on the mixer.
By default, I think it's set to 3124 (describing channel control from left to right) , so if you are describing the paddles and what they control from left to right (and unless I'm misunderstanding the problem), then it sounds like correct behavior (paddle 1 will control deck 3 and paddle 2 will control deck 1).
You can change mixerOrder to be 1234 to have that order of deck control from left to right on the mixer.
Posted 2 days ago @ 12:34 pm
If i will change the order all other controls will be in the wrong place (faders, eq, gain, filter, meter, etc).
What other options are there beside 'left' and 'right' for 4 channel controller?
What other options are there beside 'left' and 'right' for 4 channel controller?
Posted yesterday @ 6:04 am
ok fixed it! here is the script for FX_PADDLE:
action_deck 1 ? deck 3 effect_active 6 while_pressed : action_deck 2 ? deck 2 effect_active 6 while_pressed : action_deck 3 ? deck 1 effect_active 6 while_pressed : action_deck 4 ? deck 4 effect_active 6 while_pressed
action_deck 1 ? deck 3 effect_active 6 while_pressed : action_deck 2 ? deck 2 effect_active 6 while_pressed : action_deck 3 ? deck 1 effect_active 6 while_pressed : action_deck 4 ? deck 4 effect_active 6 while_pressed
Posted yesterday @ 6:39 am
So I'm pretty sure you broke the mapping for things like latching (up vs down), etc, so please put it back to what it was.
Now that I think of what you described (and looking at what you wrote in the script), it's most likely you toggled deck inversion from the controller on the left side (the leftdeck was swapped between 3 and 1). After restoring the factory mapping, press the Deck 3 button on the left deck and see if that resolves your issue (try the left side paddles again).
Now that I think of what you described (and looking at what you wrote in the script), it's most likely you toggled deck inversion from the controller on the left side (the leftdeck was swapped between 3 and 1). After restoring the factory mapping, press the Deck 3 button on the left deck and see if that resolves your issue (try the left side paddles again).
Posted yesterday @ 1:26 pm
no its not
Posted yesterday @ 3:15 pm
Are we talking about MIXON RPO or MIXTOUR PRO ? I'm confused..
If we are talking about MIXON PRO (4 paddles available), then:
mixer_order should be 3124 and deck assignment (on mappers tab inside settings) should be 1,2,3,4
Also why the mapping reference effect slot 6 ?
This mapping makes the effects unit section of the controller completely useless
If we are talking about MIXTOUR PRO (2 paddles available) then:
mixer_order should be 3124 and deck assignment (on mappers tab inside settings) should be 1,2,3,4
You can use a mapping with effect_slot (original mapping uses slot 1) but you don't need to use while_pressed since the paddle is technically a toggle switch.
If we are talking about MIXON PRO (4 paddles available), then:
mixer_order should be 3124 and deck assignment (on mappers tab inside settings) should be 1,2,3,4
Also why the mapping reference effect slot 6 ?
This mapping makes the effects unit section of the controller completely useless
If we are talking about MIXTOUR PRO (2 paddles available) then:
mixer_order should be 3124 and deck assignment (on mappers tab inside settings) should be 1,2,3,4
You can use a mapping with effect_slot (original mapping uses slot 1) but you don't need to use while_pressed since the paddle is technically a toggle switch.
Posted 5 hours ago