Burak Duru
Burak Duru
https://github.com/TomSchimansky/CustomTkinter/wiki/CTkScrollbar It's basically `button_color` and `button_hover_color`: `scrollbar = customtkinter.CTkScrollbar(root, button_color="red", button_hover_color="yellow")`
There's apparently no support for that yet but you can first destroy and pack it again, it will switch to the default position. ```python progressbar.stop() progressbar.destroy() progressbar = customtkinter.CTkProgressBar(master=root, mode='indeterminate')...
Oh sorry, i didn't mean to write `root = Tk()`, i edited it out. For the 'state' situation, in the docs it advises to use `tkinter.DISABLED` not `customtkinter.DISABLED`. (https://github.com/TomSchimansky/CustomTkinter/wiki/CTkRadioButton) Yet...
Try this format: `my_image = customtkinter.CTkImage(light_image=Image.open(""), dark_image=Image.open(""), size=(30, 30))`
Yeah I didn't see the new patch update my bad, I updated the code now it should be working fine. Try it.
I don't think it's possible with built-in methods. But you can assign a new option menu for each certain number.