AU parameter automation issue - ToggleButton does not write

Just tested and my problem is fixed!! Woo hoo!
:champagne::champagne::champagne:

All discrete plugin parameters, combo boxes, buttons are now automatable.

No idea how they messed up that bad but glad we are back on track

5 Likes

Any news from Ableton?

Testing a few plugins made with JUCE. Toggle and ComboBox do not write, at least on Live 10.1.15.

1 Like

Did you test with latest Logic 10.6.1/Big Sur? For me the problem is definitly not fixed.

2 Likes

Wow, they have broken it again.

Just confirmed broken in 10.6.1 on Big Sur, at least :angry:

1 Like

The release notes for Logic 10.6.2 says this is fixed, I have not checked myself, yet!

2 Likes

Iโ€™m running into this issue on Logic Pro X 10.6.2 on macOS Catalina.

EDIT: Nope, thatโ€™s not true. Mistake on my end.

For anyone wondering, appears this issue is still present in Ableton 11 as well.

I can confirm this issue is still preset in Ableton 11.0.12 .
But I found a workaround:

beginChangeGesture();
juce::Timer::callAfterDelay(80, [this, value](){
    setValueNotifyingHost(value);
    juce::Timer::callAfterDelay(80, [this] (){
       endChangeGesture();
   });
});

With these delays Ableton Live 11.0.12 starts to record discrete parameter values.
With delays below 80 ms recording becomes unreliable.

1 Like