Re: GUI slider control

2006-04-28 Thread James Stroud
[EMAIL PROTECTED] wrote: > Could someone tell me the easiest way to create a GUI slider control in > Python? > This is how we do it in the hood: from Tkinter import * def callback(value): print value tk = Tk() s = Scale(tk, orient=HORIZONTAL, command=callback) s.pack() tk

GUI slider control

2006-04-28 Thread mike7411
Could someone tell me the easiest way to create a GUI slider control in Python? -- http://mail.python.org/mailman/listinfo/python-list