INTERACT FORUM
Windows => Plug-in Development => Topic started by: PaulSinnema on April 23, 2011, 03:55:53 am
-
Hi,
I would like report a bug. I've got togglebutton on my plugin that switches the equalizer on/off. This does not seem to work anymore. I do get notified that the equalizer has been swithed on/off in the DSP Dialog but setting the EQOn to true/false has no effect in the DSP Studio.
Regards
Paul
private void checkBoxEQOnOff_CheckedChanged(object sender, EventArgs e)
{
try
{
mcMixer = mcRef.GetMJMixer();
mcMixer.EQOn = checkBoxEQOnOff.Checked;
}
catch (Exception ex)
{
errorHandler(ex);
}
}
-
Thanks Paul. I'll follow up next week once I have the code in front of me.
Cheers.
-
Coming in 16.0.75 and later:
SDK: MJMixerAutomation equalizer on / off functions were not working properly.
Please let us know how you fare once the new version is available.
Thanks.
-
Hi Matt,
Well, it works partly.
1. Clicking the checkbox in the DSP Studio does send me the right true/false for my toggle button and the plugin reflects that correctly now
2. Clicking my toggle button on the other hand does set the EQOn to true/false but it is not reflected in the DSP Studio
Regards
Paul
-
Any news here?
-
Hi,
I had completely forgotten this problem. A recent complaint about AutoEQ pointed me back to this issue. It is still a problem.
Could there be a relation with this problem? http://yabb.jriver.com/interact/index.php?topic=65110.0
Regards
Paul
-
Anyone listening in on this subject?
-
FYI - Matt is away for the week.
-
Hi, could you take a peek at this possibly little problem?