Hi everyone !
I’m having trouble with a slider. Inside this slider I have a script that is being called with this event :
on change do … end
basically it just changes some field texts based on its own value
It does perfectly the thing that it is meant to do when I use this slider directly.
The thing is that I have a button that modifies this slider.value, and when I click on the button, the value of the slider is changed, but the script inside the on change in the slider is not called.
this is the script that is called when I click the button :
on click do slider1.value: slider1.value-1 end
Plus, when I try to call directly the function of the slider, if I do for example :
slider1.change[]
inside the button, nothing happens either.
What am I missing in all this ?