tkinter-scale Questions
3
Solved
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):
I am thinking placing one scale on...
Stilted asked 21/8, 2012 at 15:36
3
Solved
How can I set the default value of my slider to 100 ?
self.slider = tk.Scale(self.leftFrame, from_=0, to=256, orient=tk.HORIZONTAL, command=updateValue)
Shank asked 18/10, 2010 at 20:57
2
Solved
I need to set the scale from 0.55 to 2.75 with a very little interval for my slide
But all I get is a range from 1 to 3 with a scale of 1. Totally annoying.
TkInter documentation says it can handl...
Castellatus asked 28/9, 2013 at 12:57
1
Solved
Here is my code:
import Tkinter
top = Tkinter.Tk()
top.geometry('600x600')
scale = Tkinter.Scale(top,from_=10,to=40, orient=HORIZONTAL)
scale.pack()
The following error appeared:
NameError:...
Maitland asked 27/10, 2014 at 6:44
1
Solved
Is it possible to have a slider (Scale widget in tkinter) where the possible values that are displayed when manipulating the slider are discrete values read from a list?
The values in my list are ...
Radiative asked 9/9, 2014 at 12:44
1
© 2022 - 2024 — McMap. All rights reserved.