I'm trying to write a small interactive application that copies a text file to the clipboard line by line on key press. I haven't even gotten to the clipboard part yet... The biggest issue I couldn't search up is having the window always on top and active. I used the line:
root.attributes('-topmost', True)
to position it on top, but it still only registers key presses when it's the active window.
similar questions:
Setting tkinter to always be the current active window. (no answers)
Make a Tkinter Toplevel active (OS specific)
Is what I'm looking for solely possible with Tkinter or should I be incorporating something else? I'm new, so descriptive advice would really be appreciated.