PySimpleGUI

Results 1145 comments of PySimpleGUI

Just so we're clear... or not clear.... So far, this problem has _**only**_ happened on M1 computers?

> It seems the window is there, both in function and in the window manager, but just isnt visible. ![image](https://user-images.githubusercontent.com/46163555/171266645-7123cc41-b6ef-451d-8082-a980a645afc7.png) This is a very important clue! That means it's alpha...

If this is an easy test for someone to run, can someone try using a very old version of PySimpleGUI just to make sure nothing's been added recently that could...

@geekzsp can tell us your version of tkinter? You can type `psgver` from the command line to get a window with the versions

@EdwardChamberlain The `get_versions` function now has the platform specific information. That function is called by `main_get_debug_data` and is shown in the window created when clicking the "Versions for GitHub" button...

@thebestben can you verify your versions? `psgver` will give you the data that you can post here that will be of great help. Thanks for commenting and adding to the...

I have a test to propose... ```python import PySimpleGUI as sg layout = [ [sg.Text('My Test Window')], [sg.Input(key='-IN-')], [sg.Button('Go', bind_return_key=True), sg.Button('Exit')] ] window = sg.Window('Window Title', layout, finalize=True) window.set_alpha(1.0) while...

The theory was that the statement prior to the event loop: ```python window.set_alpha(1.0) ``` Would make the window appear.

If you want to use that "Go" button, you likely want a delay before exiting. Also, let's try making the initial window slightly dim. ```python import PySimpleGUI as sg import...

@EdwardChamberlain I love ya man! ![image](https://user-images.githubusercontent.com/46163555/172837296-efc0fcb7-39a8-418f-aeb1-007fe946671b.png) Nice! Thank you for doing all these tests this morning. Can you set it to 1.1 instead of 0.99?