Akash Bora

Results 221 comments of Akash Bora

@DimaTepliakov Pass `text_color=['black', 'white']` in the buttons.

@karthik-bammidi > but how to pass the step no to the buttons. Can you explain in details what exactly you want?

@bladas @RomaRobot Try [py2app](https://py2app.readthedocs.io/en/latest/index.html) instead of pyinstaller.

@bladas this issue is not showing in my system. I use an older version of mac actually. I know tkinter is buggy in macos but due to lack of resources,...

@bladas Ok bro, I made a simple application which changes frame color and count on button press, (chooses random color) Download the file from here: https://github.com/Akascape/Akascape/releases/download/Test/Button_Test.zip _(only 23 mb, packed...

@DimaTepliakov I recommend using a label instead of button. Then binding the command to it, like this: ```python import customtkinter from PIL import Image def command(): label_button.configure(fg_color=select_color) # change label...

@Vihaanmody21 Duplicate of https://github.com/TomSchimansky/CustomTkinter/discussions/2010

@Zai-Kun Try this new custom dropdown menu. It is in experimental stage, but works perfectly in windows and linux: https://github.com/Akascape/CTkScrollableDropdown ![screenshots](https://user-images.githubusercontent.com/89206401/236677843-8d8b76fd-6145-47b1-8f4d-b6a64b08e1ea.png)

@Zingzy Use this method to remove the window from taskbar: ```python root = customtkinter.CTk() x = root.winfo_x() y = root.winfo_y() root.wm_state("zoomed") root.overrideredirect(True) root.state("normal") root.geometry(f'+{x}+{y}') ```

@infinitel8p This is happening because the image label within the button is a separate widget. You have to add those bindings/tooltips for `button._image_label`: ```python from customtkinter import CTk, CTkButton, CTkImage...