Custom GUI, Knobs, Buttons and Sliders

What format should I want from GraphicDesigner for the GUI? What is the best way to use animated knobs, sliders, and buttons with custom graphics? For example, I want to customize a rotary slider with separate images for each level. Should I add multiple image files to achieve this, or is there a better way to do it ?

this tutorial shows how to make your own slider look and feel:
https://docs.juce.com/master/tutorial_look_and_feel_customisation.html

it works similiarly for buttons and a lot of other stuff, so just finish this tutorial and you’ll see.

about your other question: you can attach resources like images/imagestrips to the binaryData with the projucer and then they’ll be available in the code with juce::ImageCache::getFromMemory(data, dataSize);

1 Like

Thanks! I’ll complete the tutorial immediately.

I’ve just tried attaching an imagestrip. It works well. ( :smiley: much better than adding multiple images or adding and rotating a single knob image )