Jump to content

how to modify this code , so that the window is still transparent but not "click through"? 


Recommended Posts

2 hours ago, jacky998877 said:

how to modify this code , so that the window is still transparent but not "click through"? 

$GUI = GUICreate (" window "1366768,   0,0$WS_POPUPBitOR ($WS_EX_TRANSPARENT$WS_EX_LAYERED$WS_EX_TOPMOST))
 

is that what you mean?  :)

#include <WindowsConstants.au3>

Local $GUI = GUICreate (" window ", 1366, 768, 0, 0, $WS_POPUP, BitOR($WS_EX_TOOLWINDOW, $WS_EX_TOPMOST))
GUISetBkColor("0xFFFF00")     ; $COLOR_YELLOW
WinSetTrans($GUI, "", 50)
GUISetState(@SW_SHOW)

While 1
    Sleep(100)
WEnd

 

Edited by ioa747

I know that I know nothing

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...