I'm experimenting with python and tkinter. I have a main tk window (tk.Tk) and a splash window (tk.Toplevel)
I added an icon to both windows using the following line
self.iconphoto(False, tk.PhotoImage(file=globali.IMG_PATH + 'virtuve_ico.png'))
It's working fine but if I go with my mouse over the icon on icon tray (taskbar) it shows a text saying 'Tk' or 'Toplevel. I would like to change it to "My App Name".
Toplevel on mouse over Tk on mouse over
Is that possible?
Thanks to everybody