Ingresar:     


Forum: VirtualDJ Technical Support

Tópico: DENON MC7000 FX_Assign_Button
Hey,
Can you please store the FX Assign button individually (1-4) as a command. Currently, all 4 keys have the same command.
 

Mensajes Mon 30 May 22 @ 7:15 pm
You just need to query the deck that the pressed button is assigned to.
action_deck x ? ActionForDeckX : ActionForAllOtherDecks


For FX1_ASSIGN button the action assigned for all decks is effect_clone 1 (clone the effects of Deck 1 to this deck)

So if you want the FX1_ASSIGN button of Deck 2 to perform some ActionA and the rest to still perform the global action, you need to assign as ..

action_deck 2 ? ActionB : effect_clone 1


or individual actions for each one of the 4 buttons..

action_deck 1 ? ActionA : action_deck 2 ? ActionB : action_deck 3 ? ActionC : ActionD


If you want some specific actions, provide these in details and we can help with the code
 

Thanks for your help.

The Assign buttons should be assigned effects that work as selected on each deck as follows: Assign Button 1= filter_selectcolorfx 'filter' activate | Assign Button 2 = filter_selectcolorfx 'flanger' activate | Assign Button 3 = filter_selectcolorfx 'echo' activate | Assign Button 4 = filter_selectcolorfx 'cut' activate. The filters should be selected at the touch of a button as with the Pioneer DDJ 800/1000.
 

FX1_ASSIGN :
action_deck 1 ? deck all filter_selectcolorfx 'filter' : action_deck 2 ? deck all filter_selectcolorfx 'flanger' : action_deck 3 ? deck all filter_selectcolorfx 'echo' : deck all filter_selectcolorfx 'cut'

The above script is for the left-side FX Assign buttons. You can map the FX2_ASSIGN with 4 more Color FXs if you want.
 

Great, you understand your job! Thank you