how can I make a window on top of full screen applications using an Autohotkey script? Any window, if possible, or at least a window created by the script.
Autohotkey make a window on top of fullscreen games
5.2k Views Asked by Andrius At
2
There are 2 best solutions below
0
On
If SplashTextOn or SplashImage doesn't work, nor a game specific child-parent setting by Wicked here, nor the library GPF , than according to this, nothing will or no-one has managed yet. EDIT: I managed to get the child-parent method above for any fullscreen application (and not just a specific game) as follows, but there is still something wrong with the Gui then:
WinGet, WinHND, ID, A ;Get Handle of current fullscreen app
Gui,Vol:+0x40000000 -0x80000000 +Owner%WinHND% ;MAke fullscreen app own our gui
Andrius,
One that seems to work with many full screen games is the following:
If you want to make this interactive, you could use something like:
Success