UI Element stepSize smaller than 0.01??
-
Is there a way to get the UI element stepSize smaller than 0.01?? on sliders from 0-1 having just hundred steps with a midpoint other than 0.5 makes the slider snap and is utterly annoying. how can this be prevented?
-
@Morphoice I think you can do it directly in the script editor (you might want to double check to confirm it is producing the tactual value):
Knob1.set("stepSize", 0.001);
If not you can also try
Engine.doubleToString
-
@HISEnberg confirmed. that seemed to work! brilliant!! my man!
-
-