Jump to content

GUI on top of fullscreen app.


Lej
 Share

Recommended Posts

Are there any ways to draw a GUI on top of a game/program running in fullscreen mode? WinSetOnTop doesn't work. Preferly some way of getting the autoit GUI on top but other suggestions are fine to. Even just drawing some text on top of the game would work. Thanks in advance!

Link to comment
Share on other sites

Are there any ways to draw a GUI on top of a game/program running in fullscreen mode? WinSetOnTop doesn't work. Preferly some way of getting the autoit GUI on top but other suggestions are fine to. Even just drawing some text on top of the game would work. Thanks in advance!

Use something like this:

Run("application.exe")

WinWait("application")

$thdl=GuiCreate("", 270,40,0,0,$WS_POPUP,$WS_EX_TOPMOST)

...................

Just use $WS_POPUP (no title) and $WS_EX_TOPMOST for your GUI.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...