Jason Yang
Jason Yang
## - [x] Searched main docs for your problem www.PySimpleGUI.org 1. In https://pysimplegui.readthedocs.io/en/latest [GUI Development does not have to be difficult nor painful. It can be (and is) FUN](https://pysimplegui.readthedocs.io/en/latest/#gui-development-does-not-have-to-be-difficult-nor-painful-it-can-be-and-is-fun) ####...
Not exactly know or know nothing what your issue ? A short, executable PySimpleGUI code preferred, not tkinter code.
1. Script start, button with color ('#1f77b4', '#1f77b4')   2. Color clicked at RGB (223, 240, 15)  3. button color changed to RGB (223, 240, 15)  4....
I see, the state of color chooser not saved in Manjaro XFCE (Arch Linux) window platform. It's different as in my micosoft Windows 10.
Here's example how it go with initial_color by calling tkinter directly, not sure if it work under Manjaro XFCE, Windows 10. ``` python import tkinter as tk import PySimpleGUI as...
Maybe you mean ```python newColor = tkinter.colorchooser.askcolor(parent=window.TKroot, color=values[field])[1] ```
Maybe you find it in my reply in https://github.com/PySimpleGUI/PySimpleGUI/issues/5584#issuecomment-1150647554
Following is my code for it ```python import PySimpleGUI as sg def Column(color, key_index): layout = [ [sg.Input(color, size=10, key=f'IN {key_index}', enable_events=True, disabled=True), sg.ColorChooserButton(button_text=color, target=f'IN {key_index}', size=7, default_color=color, button_color=(sg.theme_button_color_text(), color),...
Duplicate as issue #1726 Before the content of the link to https://pysimplegui.readthedocs.io/en/latest/#buttonmenu-element, you can find > NOTE - Mac users will not be able to use the file_types parameter. tkinter...
> file_types > > filter file types, Default value = ( ("ALL Files", "*.* *"), ) > format Tuple[(str, str), ...] > NOTE - Mac users will not be able...