Re: GUI slider control
[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
Could someone tell me the easiest way to create a GUI slider control in Python? -- http://mail.python.org/mailman/listinfo/python-list