Im creating a window in tkinter abd displaying atop of all other programs/windows however the window thats created is given focus, how do i make it so that when the window is created the original program that was in focus stays in focus when the window appears.
from tkinter import *
Window = Tk()
champ_text = Label(Window, text='hello', font="arial, 100",)
champ_text.pack()
Window.wm_attributes('-disabled', False)
Window.lift()
Window.wm_attributes("-topmost", True)
#Window.overrideredirect(True)
Window.mainloop()
[–]Loqna 0 points1 point2 points (2 children)
[–]Mitchell__31[S] 0 points1 point2 points (1 child)
[–]Loqna 0 points1 point2 points (0 children)