AudioProcessorEditor in App?

Hi there!

I am coding an app, that uses AudioProcessors and I tried to add AudioProcessorEditors as Components to my GUI, but ran into problems with addAndMakeVisible() and setBounds() (and yes, I used setSize() in my constructor). Actually I tried to research, if it is even possible to use an AudioProcessorEditor the same way as a Component, but I did not find anything about that. So here is the question: Is it possible to use an AudioProcessorEditor like a component? Or should I use Components instead?

Thanks in advance for your answer!

It is a component, it inherits from the component class. So you can use it like one yeah

1 Like

Thanks! Actually I thought so, too. But it seems I have a nasty bug in my code. Anyway, thanks for your help!