I've been wondering if it is possible to overlay a tkinter application on another full-screen application is this possible? if so how
Asked
Active
Viewed 52 times
0
-
Steps would be as following; Make the window [transparent](https://stackoverflow.com/questions/19080499/transparent-background-in-a-tkinter-window). Now set the `-fullscreen`, `-topmost` attributes. [read here](https://www.tcl.tk/man/tcl8.6/TkCmd/wm.html#M9). Pass them to your `tkinter.Tk` instance' `attributes()` method. e.g: `root.wm_attributes('-topmost', True)` – Billy May 26 '22 at 05:47