Dual Range Slider

advanced-prototyping

#21

Hi josephxbrick,
Wow! Thank you so much! It works!

Now I understand the issue.
Preview

slider.rp (265.3 KB)

Many thanks again!
Natalie


#22

Your purple bar doesnā€™t move past the right slider. When I recreated this, the bar is moving past the right slider. Is there a way to fix that?


#23

Thank you! Works wonderfully. Appreciated.


#24

How can i change the range between numbers, i would like to set 18 -35


#25

Hi!

There is a hidden dynamic panel called ā€œ_varsā€ on the page that lets you configure that:

image

[Edit] Oh, you are using a different one than mine, which I havenā€™t looked at. Mine is here and it lets you adjust it.


#26

Slider.rp (62.4 KB)
@josephxbrick Owh i already built one myself. I just have one question: how can you make it that the gray bar in this file gets a lighter color when you move the wyber (ondragX)


#27

thank you. and is it possible to adjust it to only one side slider?


#28

Hi!

I updated this so thereā€™s only one slider. You can still set the minimum and maximum. If you provide more details on the lightening and darkening you mentioned, that would be easy to build in.

simple-slider.rp (57.9 KB)


#29

image

Hi! Can you help me how to make something like this? wherein the input control is attached to the slider. So, if I change the value in the input box, the slider will adjust accordingly. Thanks in advance!


#30

Hi!

Hereā€™s an example doing this. The ā€œvariableā€ v_sliderMax specifies the maximum value for the slider. (Note: this assumes the slider minimum is 0.)

The ā€œvariableā€ v_isDragging is true while dragging and false while not. This is to prevent the On Text Changed event from moving the slider when the slider sets its text, which would move the slider knob twice; we want the field to move the slider only if the user enters something.

slider_with_field.rp (57.1 KB)


#31

Wow, thank you so much for helping me out! This is great!