PySimpleGUI
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')] ]...
 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?  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 !  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?...