I need a tkinter (python) script for me static (non resizable)
I have a pretty simple tkinter script, but I don't want me to be reanimated as some kind of error message. i honestly don't know what to do
this is my script:
from tkinter import * import ctypes, os def callback(): active.set(False) quitButton.destroy() JustGo = Button(root, text=" Keep Going!", command= lambda: KeepGoing()) JustGo.pack() JustGo.place(x=150, y=110)
source share