PySimpleGUI

Results 1145 comments of PySimpleGUI

In other words, does this test work? ```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, alpha_channel=1.1) while...

Fascinating! To be clear, the same code, with a value of 0.99 works?

Question / test.... Does this produce a window every time that is not translucent? ```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')] ]...

![image](https://user-images.githubusercontent.com/46163555/172852176-e8c646d7-c7e1-40f4-a722-5a2ae055a1b0.png) Huge victory! Way to go Edward! We have a "workaround".... setting this one parameter and including this one statement "fixes" the problem. It's a patch that works. While it...

> I'm sorry for brining bad news to the party>? No sorry needed 😀 It's just part of debugging. I appreciate the help. All data, is good data.

Isn't debugging intermittent problems so much fun? ![image](https://user-images.githubusercontent.com/46163555/173556540-aa341b1c-430a-4200-8ea8-02e05c5c481a.png) It's a _**lot**_ easier, a lot more enjoyable, a lot more productive with so much help and data coming in. I really...

I only thought about it and dashed it out in a 5 minute period. Here's another one to try. I combined the color picker demo to check for a pixel...

Here is how the auto-test ran on my system. I clicked the window that's behind the test window so that when the check for a ted pixel instead found the...

Oooooooooooooooooooooooooooooooooooooooooooooooooooooooo VERY tasty code @EdwardChamberlain ! ![image](https://user-images.githubusercontent.com/46163555/173790160-dca1e8d3-5eef-40c1-9e48-eae63e098f20.png) Love it!

I would like to find a way to get the alpha back to 1.0 once the window is visible. Perhaps sleeping a short period before trying to set the alpha?...