I've just started playing around with the python tkinter library and I ran into some problems just following online tutorials to the letter. I can't seem to change the colour of anything (button, text, cursor...). I've tried this on two different computers and both times I get the same result. I'm using the anaconda distribution and I added tkinter with the "conda install tkinter" command.
Working example:
from tkinter import *
from tkinter.ttk import *
master = Tk()
master.geometry("500x500")
master.config(cursor="dot red")
mainloop()
I've even tryerd:
from tkinter import *
from tkinter.ttk import *
master = Tk()
master.geometry("500x500")
master.config(cursor="dot #ff0000")
mainloop()
Bot produce the same exact result (I'm really sorry for taking the picture of the screen with my phone, but the cursor wouldn't show up on a print screen) : Cursor picture
Thanks for all of your help.