PySimpleGUI

Results 1145 comments of PySimpleGUI

![image](https://github.com/user-attachments/assets/1003863b-f8a8-4843-8371-e2fb25fa4644) Thank you for testing it! I see the same version numbers as the same in the two places I think it's shown: ![image](https://github.com/user-attachments/assets/82edd9b9-34aa-405d-92c0-c6732a4cfdfc) ![image](https://github.com/user-attachments/assets/c7cb7496-be7b-400f-bb74-75f03735931c) Note that there can be...

maintanence -> maintenance in 5.0.6.15 ![image](https://github.com/user-attachments/assets/a2c3d3f9-55fc-491d-992d-2f5eab27577e)

Ah, now I understand. Thank you for the explanation and screenshots. It helped me step through it all in my head. I update using psgmain from the command line to...

This should be fixed in the PyPI 5.0.7 release so closing. Please reopen if there's any problems of course.

PySimpleGUI is capable of integrating with custom themes like plastik, TTK-Azure, etc. They're going to be of limited value since not all of the elements use TTK widgets. I've spoken...

It's certainly on the list of improvements to the tkinter port.

Yea, this one isn't something I'm interesting in adding to the PySimpleGUI SDK. It's a step too far outside the overall design direction. As Jason's shown, it's possible with tkinter...

And for fun, a version that uses an Apple image and has a custom Icon. ![image](https://github.com/clear-code-projects/PySimpleGuiUltimate/assets/46163555/424d9bab-0e86-4b49-80aa-86c44a5830ba) ```python import PySimpleGUI as sg from random import randint # game constants FIELD_SIZE =...

Don't use popups... popups are modal. For something like this, always make your own windows.

For a situation like this, where clearly only 1 window is to be active and interacted with, you can always hide the other window entirely by setting the alpha channel...