Jason Yang

Results 301 comments of 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') ![image](https://user-images.githubusercontent.com/55352169/96450830-4c7b6580-1249-11eb-9794-dffe1ac7a504.png) ![image](https://user-images.githubusercontent.com/55352169/96451841-c06a3d80-124a-11eb-8fca-45453b194c14.png) 2. Color clicked at RGB (223, 240, 15) ![image](https://user-images.githubusercontent.com/55352169/96450943-72086f00-1249-11eb-92ea-e0efeddc78d2.png) 3. button color changed to RGB (223, 240, 15) ![image](https://user-images.githubusercontent.com/55352169/96450963-7896e680-1249-11eb-8542-611f028ff8db.png) 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...