Ingresar:     


Forum: VirtualDJ Technical Support

Tópico: Setting eqmode no longer works
I used to have a custom mapping for a button on my controller to switch between equalizer modes from the frequency High/Mid/Low mode to the stem separation EZRemix modes. I was using this command:

device_side 4 ? setting 'eqmode' 0 ? setting 'eqmode' 1 : setting 'eqmode' 0 : nothing

At some point after an update, this stopped working. I even tried to isolate the problem by trying things like:

- setting 'eqmode' 0
- setting eqmode 0
- setting 'eqmode' frequency
- setting eqmode frequency
- setting 'eqmode' +1
- setting eqmode +1

Nothing is working.

This method was originally suggested in this thread: https://www.virtualdj.com/forums/235987/VirtualDJ_Technical_Support/Script_Help_-_VDJ_Stem_Isolate.html

This change doesn't seem to be documented anywhere. VirtualDJ team, if you're reading this, please don't make breaking changes to the scripting language without thorough documentation and workarounds. Those of us who pay for and use your software rely on things working as usual, especially those of us who use it during live performances.

Does anyone know have any knowledge on how to fix this or anything about it? Thank you
 

Mensajes 4 days ago @ 5:42 pm
Try this:

eq_mode frequency ? eq_mode ezremix : eq_mode frequency
 

If you want to use the setting eqMode, you need to define the correct values as offered in Options and not +1, 0,1 etc
E.g.
setting 'eqMode' 'frequency'
setting 'eqmode' 'EZRemix'
etc.
or setting 'eqMode' 'frequency' ? setting 'eqMode' 'EZRemix' : setting 'eqMode' 'frequency'

If you use the action eq_mode, you can use the above parameters, plus eq_mode + 1 which is toggling between Frequency and the selected Stems mode.

Both the action and the setting syntax are documented when you type an Action..
E.g.
 

Thank you both. Using eq_mode action solved my problem. I didn't realize that was a dedicated action. I could not get the setting to work.

Appreciate both your help and quickness with answering, cheers!