I've designed a GUI with a login in screen. When the user's mouse hovers over the text box or the logo in the corner, I want a small message to appear next to the mouse to inform the user of what it is or what it is for.
I asked a friend, but he only knows how to do it in HTML, whilst I'm working with python. Is this type of effect possible and if so, what code do I need to include?
Here is an example of the effect I mean.
I've included some code if anyone wishes to edit it.
from tkinter import *
temp = Tk()
temp.geometry('500x300')
temp.title("Login Screen")
logo = PhotoImage(file='image.png')
logoplace = Label(temp, image=logo, bg='black')
logoplace.pack()
Entrybox = Entry(temp, width=20)
Entrybox.pack()
temp.mainloop()