Re: finding a plugin that does dynamic view resizing
Re: finding a plugin that does dynamic view resizing
- Subject: Re: finding a plugin that does dynamic view resizing
- From: Michael Hopkins <email@hidden>
- Date: Mon, 15 Mar 2010 18:01:08 -0700
Paul,
I don't think I have that source available anymore. It's been a while. However, it's a simple matter to modify the FilterDemo that ships with the SDK. It's in Developer/Examples/CoreAudio/AudioUnits/FilterDemo.
Use interface Builder to add two new buttons named small and large. Add an action for each in AppleDemoFilter_UIView, and in the action use the following code:
- (IBAction) largeSizeRequested: (id) sender {
[self setFrameSize: NSMakeSize(newSizeWidth, newSizeHeight)];
}
Do the same for the other button. This will work on Tiger.
If you have SnowLeopard, several of the new custom au views like AUMultibandCompressor, and AUDynamicsCompressor do dynamic resizing (toggle the disclosure triangle).
Hope this helps!
-michael
>> On Mar 13, 2010, at 3:04 PM, Paul Davis wrote:
>>
>>> in this email :
>>> http://lists.apple.com/archives/coreaudio-api/2005/Aug/msg00245.html
>>> michael hopkins mentions a modified version of FilterDemo that can be
>>> told to resize itself. It is possible to get hold of this? Are there
>>> any plugins that in their *tiger* incarnation do dynamic resizing?
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Coreaudio-api mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden