Struggling to get a simple form to work in a tkinter instance. Is there a known issue with not being able to click on tk.Entry boxes? I'll take the key parts of the code out to see if anyone can spot something i'm doing wrong?
class CreateWindow():
def __init__(self):
self.root = tk.Tk()
self.root.overrideredirect(True)
***Then I do a whole load of importing images, setting background and other stuff ***
self.messageText = tk.StringVar()
self.MessageBox = tk.Entry(self.root, textvariable = self.messageText)
self.MessageBox.place(x=100, y=100)
self.root.mainloop()
This code is then called from if main = name
Does anyone see anything I'm doing wrong??