Disable Shift-Click Knob Text Box
-
Is there an easy way to remove the shift-click text box popup from knobs? The "showTextBox" property doesn't seem to change anything.
-
@Casey-Kolb 5 years later, I'm also interested in this!
-
This lets you override most of the behaviour.
-
@Christoph-Hart thank you! Once I call
const var mods = Knob1.createModifiers();
can I use the same logic for multiple knobs? Or does it have to be one set of .createModifiers per slider?
-
@tomekslesicki One per slider, but you can reuse the same object. You could also do it in a single loop which would apply it to all sliders in your project.
-
@d-healey ok, so that I understand it correctly - I call createModifiers() once, and then loop through the sliders with .setModifiers, right?
-
@tomekslesicki Yes that's my understanding, the
createModifiers
function should return an object you can pass insetModifiers
- let me know if it works. -
@d-healey it does, thank you!