Use Scale : Scale : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Scale »

 

Use Scale



from Tkinter import *
import string


root = Tk()
root.title('Scale')

scale = Scale(root, 
              orient=VERTICAL, 
              length=284
              from_=0
              to=250,
              tickinterval=50)
              
scale.grid(row=0, column=0, sticky='NE')

scale.set(100)

root.mainloop()

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Scale


Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0