Quick Sign In:  

Forum: General Discussion

Topic: ColorFX on Traktor S3 MK3
Hi there,

I want to mimic the ColorFX selection per deck like Traktor 3 Pro does it.



In Traktor 3 Pro you can hold down on one of the five ColorFX buttons (marked blue) and then "paste" the effect on to the deck (marked red).

I think one way would be to check on every FX_SELECT which FILTER_ON is triggered and then apply the filter_selectcolorfx for the deck. I don't really know how to make it work tho.

Merry xmas and thanks for any help!
 

Posted Tue 26 Dec 23 @ 10:16 pm
In theory, you should do it like this:
Button 1: set '$colfxsel' 1 while_pressed
Button 2: set '$colfxsel' 2 while_pressed
Button 3: set '$colfxsel' 3 while_pressed
Button 4: set '$colfxsel' 4 while_pressed

ON Button: var_equal '$colfxsel' 1 ? filter_activate 'echo' : var_equal '$colfxsel' 2 ? filter_activate 'noise' : var_equal '$colfxsel' 3 ? filter_activate 'pitch' : var_equal '$colfxsel' 4 ? filter_activate 'filter' : filter_activate
 

Posted Wed 27 Dec 23 @ 2:30 pm