Is it possible to use animated cursors in tkinter window like using custom cursor with widgets. To use custom ani cursors on root window of tkinter file
Thanks in advance :D
You can do it. Almost all widgets have cursor parameter so you can change the cursor of widgets separately.
Code:
import tkinter as tk
root = tk.Tk()
root.geometry("500x500")
root.configure(cursor="heart") # Default cursor on main window.
B1 = tk.Button(root, text="circle_cursor", cursor="circle") # Cursor on Button widget
B1.pack()
root.mainloop()
Possible cursors:
root.config(cursor='some_cursor'. See for example Displaying a Busy Cursor on effbot.