I'm sure this is probably pretty easy but what would be the correct way of implementing a scroll bar in a plugin?
I tried creating a viewport member object in my AudioProcessorEditor, then add AudioProcessorEditor to the viewport like this:
m_oViewport.setViewedComponent(this);
but this either causes nothing to happen or crashes.
On the other hand could implement my own scrollBar class, but that seems quite complicated; probably I'm missing something basic here. I could not find any viewport example in the JuceDemo...
thank you!