PySimpleGUI
PySimpleGUI
> I really think this is worth the investment of getting this feature into the code prior to recording the Udemy lesson on Tables. Now that I've said this, I...
I don't have 100% coverage for illegal values for all parameters in PySimpleGUI. For this is basically a badly formatted color string being passed in. I would consider this to...
I appreciate the code @jason990420. Very helpful in both replicating and seeing how a user may actually try to do this. The problem with a user ever doing this is...
> Thank you!  There are those magic words again.... _Thank you for the kind and supportive words_! They have fueled this project and continue to. Having slept on this...
Fixed in version 4.61.1.59 on GitHub
@infinitepower18 where do you learn about it? Did you do a google search for a list of python GUI packages and saw a site that discussed them that then led...
> it was a long time ago  hearing that! Glad you've stuck around
Well, this totally made my day! Great story, really engaging, and feels SOOOO good... thank you! 
Copy/paste works, certainly for single line input. Does it happen on all inputs including the single line or just the multi-line?
Control+A selects all text in the `Input` element, at least on Windows it does. ```python import PySimpleGUI as sg layout = [ [sg.Text('My Window')], [sg.Input(key='-IN-')], [sg.Button('Go'), sg.Button('Exit')] ] window =...