I have a slider input set up and it works fine but it’s sometime hard to fine tune the correct amount with the slider. I would like to a button that can incrementally change the inputs value each time it’s tapped. Is it possible to set an input’s value with a workflow?
Use a state and set the source of slider to this state
Also, add reset relevant inputs to make it work 100%.
Because if you only set the initial content with the state, when you manually edit the slider and then try clicking the button again, it won’t work.
So have something like this:
My initial content is the custom state
And when clicking the plus or minus button, I add or subtract the current value of the input and reset it:
I tested it here and it worked perfectly.
1 Like


