We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am working with PyAutoGUI and it's great.
In my workflow, I need some steps with Alert queries and Prompt inputs,
but these are hidden from the active GUI window.
Is there a chance, these Alert, Prompt etc. windows to set Always-On-Top?
Always-On-Top
Thanks, Fried
The text was updated successfully, but these errors were encountered:
I switched to a native Windows message box for that using ctypes. There you can specify MB_SYSTEMMODAL to keep it on top.
import ctypes MessageBox = ctypes.windll.user32.MessageBoxW ID = MessageBox(None, u'your text', '', 0X40 | 0x1000)
also see: https://stackoverflow.com/questions/50086178/python-how-to-keep-messageboxw-on-top-of-all-other-windows
Sorry, something went wrong.
No branches or pull requests
I am working with PyAutoGUI and it's great.
In my workflow, I need some steps with Alert queries and Prompt inputs,
but these are hidden from the active GUI window.
Is there a chance, these Alert, Prompt etc. windows to set
Always-On-Top
?Thanks, Fried
The text was updated successfully, but these errors were encountered: