@d-healey thanks! Big help.
Latest posts made by nic
-
RE: Output the value of a slider in a separate label
-
RE: Output the value of a slider in a separate label
If I do this:
const var cutoffSlider = Content.getComponent('cutoffSlider'); cutoffSlider.createLocalLookAndFeel();
I get error "function not found". How do I set up it correctly?
-
RE: Output the value of a slider in a separate label
@Mighty23 thank you very much but I already tried that. The problem is that I want to use proccessorId and so setControlCallback() will not fire. I have to change look and feel instead.
-
RE: Output the value of a slider in a separate label
@d-healey can you point me in the right direction how to set up the laf function? I have Content.getComponent() and don‘t know how to assign or start the laf.
-
RE: Output the value of a slider in a separate label
@d-healey I just want to output the value. So basically like this:
CUTOFF: 100%
And when I drag over the number or use scroll wheel it should increase/decrease it. In other words, the behavior of a diagonal slider but it should be not visible except it‘s value/textbox.
-
RE: Output the value of a slider in a separate label
@d-healey thanks, yes I will try this way. Do you know code examples for lookAndFeel? I really don‘t know how to start. How to set up my own look and feel for the slider would be enough.
-
RE: Output the value of a slider in a separate label
@ThomAce I had this but when I link the slider via processorId it doesn‘t fire the callback anymore.
-
Output the value of a slider in a separate label
My problem: I want the functionality of a slider/knob but it should just show it's value and nothing else.
So I set up a slider with a blank png for filmStripImage and output it's value in a label via setControlCallback(). It works, but when I connect the slider to proccessorId and parameterId the callback is not called anymore. What can I do to solve my problem? Or is there a better approach? Setting up a blank png feels not right ... can I just delete the look and feel? How? And how can I manipulate the value so it works in ms but outputs it in percentage?