Re: plug-in GUI refresh problem in Logic
Re: plug-in GUI refresh problem in Logic
- Subject: Re: plug-in GUI refresh problem in Logic
- From: Os <email@hidden>
- Date: Sun, 25 Jul 2004 10:09:57 +0100
Thing is, my AU doesn't have a RestoreState() method. I guess I could
add one.
I guess my question is, why is Logic different to every other AU host
in this respect?
cheers,
os.
On 25 Jul 2004, at 06:00, email@hidden wrote:
From: Marc Poirier <email@hidden>
Subject: Re: plug-in GUI refresh problem in Logic
Date: Sat, 24 Jul 2004 10:04:26 -0400
To: email@hidden
You could try adding something like this to the end of RestoreState():
AudioUnitParameter dirtyParam;
memset(&dirtyParam, 0, sizeof(dirtyParam));
dirtyParam.mAudioUnit = GetComponentInstance();
dirtyParam.mParameterID = kAUParameterListener_AnyParameter;
dirtyParam.mScope = kAudioUnitScope_Global;
dirtyParam.mElement = 0;
AUParameterListenerNotify(NULL, NULL, &dirtyParam);
Marc
email@hidden
http://www.collective.co.uk/
_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.