Hi, I'm having trouble with a tk scale widget. So far no one at the python forum
has an answer so I found this site.
As long as the resolution is set to 1, the start value can be anything I want but
as soon as I set the resolution any higher it changes the start value. Ex: I have
from_=3
for a start parameter. Here's what I get for different resolutions r:
r start
2 4
3 3
4 4
5 5
6 6
7 0
8 0
9 0
10 0
And if I want my start to be 19:
r start
2 20
3 18
4 20
5 20
6 18
7 21
8 16
9 18
10 20
This doesn't do me any good if I want resolution = 10 for: 3, 13, 23, 33,
43, etc. or 19, 29, 39, 49, etc.
Why does this happen? Is it fixable?
from_=3