None of the tkinter Scales I've made show tickmarks.
I tried pasting other people's code into my editor and same result, no ticks. The example is utterly simple so I couldn't think of anything to try except different values for the tickinterval option. I'm using tkinter 8.6 with python 3.5. Thanks for any assistance.
import tkinter as tk root = tk.Tk() flt = tk.Scale( root, label="No Ticks", from_=50.0, to=200.0, length=900, orient="horizontal", resolution=25, tickinterval=50.0) flt.grid() root.mainloop() There are no error messages and everything else seems to work.