Reputation: 187
I am creating a Lyrics display app in Tkinter and python for Ubuntu. It works fine in displaying lyrics in a window. but I want to create a on screen presentation of lyrics lines like it happens in MiniLyrics. So I want to draw over all windows and that should with click through and have transparent background.
what strategy I should use to achieve this task.
Upvotes: 1
Views: 959
Reputation: 385970
You cannot use tkinter to do what you want. Tkinter can only affect the windows it creates.
Upvotes: 2