PySimpleGUI
PySimpleGUI
I'm running into this problem. All of my applications are GUI programs and rely on users accessing the EXE file that's on the scripts folder. I was able to modify...
PySimpleGUI may compact the code if code length shortening is what's being suggested.
I've got my eyes on this project. I would love to use it as a design pattern for "scope" projects using PySimpleGUI. There is at least 1 I know of...
Are all apps involved PySimpleGUI applications? If they're all in the same program, then you'll have direct control over those windows. If they are a mix of PySimpleGUI programs and...
> It would be nice if your function returned None or Empty instead of rising exception. `find_element` has parameters to control exceptions and error conditions. See the call reference for...
The [FedEx Package Tracking Demo Program](https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_FedEx_Package_Tracking.py) uses the `silent_on_error` parameter if you want to see an example use.
> I'd suggest returning an empty value This will return `None` if the key is not found ```python window.find_element('my key', supress_guessing=True, supress_raise=True, silent_on_error=True) ```
> Should I create a new issue? Yes please 
I was able to click on an unused portion of the menu on Trinket and get it to close. Perhaps make an empty, disabled item that you can click on?...
> Yes, thanks, that works fine for testing Awesome... thanks for the update. I'm glad you're able to make progress. I just wanted to give you, as the programmer, a...