Hi
I'm a newbie at wxPython, and GUI programming in general, so I may be
being a little presumptuous here but wxSlider is not working the way I
would expect.
s1 = wxSlider(self, self.ID_S1, 50, 0, 100, wxPoint(-1,-1),
wxSize(-1,-1),
wxSL_VERTICAL|wxSL_AUTOTICKS|wxSL_LABELS|wxSL_LEFT)
gives me a vertical slider that works (ie. it slides) but it has 0 at
the top and 100 at the bottom. I would prefer 0 at the bottom and 100 at
the top. I tried the obvious and reversed the min and max values. This
does put 0 at the bottom but the initial value is ignored (the slider
starts at the bottom) and when you try to slide it it jumps straight to
the top and sticks there. Also I get no ticks in either case.
Any way to get what I want?
Here's what I'm running:
Debian Woody
GTK 1.2.9
python 2.1.3
libwxgtk2.2-python_2.2.9.2
libwxgtk2.2_2.2.9.2
Cheers
Martin