Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Locking and controlling 2 decks simultaneously
In VDJ is there a way of locking and controlling 2 decks simultaneously. If so, how can this be midi mapped?
 

Posted Thu 12 Aug 21 @ 3:33 am
locoDogPRO InfinityModeratorMember since 2013
Depends on what you want, more or less everything is a script action
there is the
deck all
specifier,
 

Posted Thu 12 Aug 21 @ 3:37 am
NicotuxHome userMember since 2014
For more flexibility you can assign some decks to one side of crossfader or nowhere
cross_assign 'left'
cross_assign 'right'
cross_assign 'thru'

Then use some filtered actions i.e.:
deck all cross_assign left ? ACTION_LEFTDECKS : cross_assign right ? ACTION_RIGHTDECKS : ACTION_UNASSIGNED_DECKS

deck all cross_assign left ? ACTION_LEFTDECKS :
deck all cross_assign right ? ACTION_RIGHTDECKS :
deck all cross_assign left ? : cross_assign right ? : ACTION_UNASSIGNED_DECKS

actions will apply to ALL decks assigned to the specified side or to all unassigned decks
 

Posted Thu 12 Aug 21 @ 11:28 am