Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Is there a method for determining the opposite of param_equal? like param_not_equal?
seanPRO InfinityMember since 2018
I'm comparing two params, I'm new to VDJ scripts so I think the right way is:
param_equal '`get_activedeck`' '`get_deck`' ?

But is there a way to negative match? like
param_not_equal '`get_activedeck`' '`get_deck`' ?

Obviously there's the option to just use the other side of the statement but sometimes a NOT can make code read a bit better.
 

Posted Tue 09 May 23 @ 4:43 am
locoDogPRO InfinityModeratorMember since 2013
use !? it inverts the replies
 

Posted Tue 09 May 23 @ 5:15 am
Or simply not param_equal '`get_activedeck`' '`get_deck`' ?
 

Posted Tue 09 May 23 @ 9:30 am