2

Firstly apologies if this has already been asked, it was difficult to search for on the forum.

I have numerous sliders on my project. I want to add some buttons to my model so that when I click button A it changes certain sliders to a set value. This will allow the user to select certain scenarios quickly.

Thanks!

Seth Tisue
  • 29,985
  • 11
  • 82
  • 149
user2960895
  • 101
  • 1
  • 4

1 Answers1

1

Every slider is associated with a global variable, and you can set that global variable from code. If your slider is called my-slider, then in your code do e.g.:

set my-slider 5
Seth Tisue
  • 29,985
  • 11
  • 82
  • 149