AU Write Automation Still Broken?
-
@Christoph-Hart Is this a hard fix?
-
@casey-kolb Bumpin' this baby once more. Has there been a fix for this yet?
-
@casey-kolb It's been almost 3 years, needs to be fixed.
-
Throwing another friendly bump here @Christoph-Hart :beaming_face_with_smiling_eyes:
-
I believe I found the cause here:
https://forum.hise.audio/topic/4786/chasing-logic-auval-validation/18Haven't had time to tinker with it, but was posted on the JUCE forum by an admin.
-
@dustbro said in AU Write Automation Still Broken?:
I believe I found the cause here:
https://forum.hise.audio/topic/4786/chasing-logic-auval-validation/18Haven't had time to tinker with it, but was posted on the JUCE forum by an admin.
..er the thing you are pointing at is the auval stuff - this is about getting AU automation to work... isnt it?
-
@lindon the last post in that thread was in response to my comment about finding out what's wrong with Latch automation in Logic. I'll post here to keep it in a relevant thread.
"Now on to why Latch automation doesn't work in Logic."
it appears that this no longer works:
param.beginChangeGesture(); param.setValueNotifyingHost (newValue); param.endChangeGesture();
We should use instead:
void mouseDown (const MouseEvent&) override { param.beginChangeGesture(); } void mouseUp (const MouseEvent&) override { param.setValueNotifyingHost (newValue); param.endChangeGesture(); }
-
@dustbro Should we mark this as as
Confirmed Bug
for Christoph? Still figuring out this new bug reporting system. -
@Casey-Kolb said in AU Write Automation Still Broken?:
@dustbro Should we mark this as as
Confirmed Bug
for Christoph? Still figuring out this new bug reporting system.I think so. Open an github issue for it.
-
Yes please, along with an example snippet and the steps to reproduce, then I can pick up on it faster.
-
That's the link:
-