Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tkinter scale with two sliders?

Does anyone know if it is possible to have a single scale widget with two "sliders" from the tkinter module? Or anyway to fake it?

Such as (edited with GIMP):

enter image description here

I am thinking placing one scale on top of another scale, but with a transparent background?

like image 928
Onlyjus Avatar asked Aug 21 '12 15:08

Onlyjus


1 Answers

No, you cannot do this with the scale widget. You can't give it a transparent background and stack them.

If I had to implement this functionality, I would use a canvas widget and draw my own sliders. It's not very hard to do, but obviously it's going to be more work than an off-the-shelf widget.

like image 66
Bryan Oakley Avatar answered Oct 22 '22 02:10

Bryan Oakley