Is it possible to click a button on parent GUI if there is a non-transparent child GUI on top of it?
Thanks!
#include <WindowsConstants.au3> $MainW = GUICreate("Main", 300, 200, -1, -1) $Btn = GUICtrlCreateButton("Button", 10, 10, 200, 50) GUISetState() $ChildW = GUICreate("Child", 300, 200, -1, -1, $WS_POPUP, -1, $MainW) WinSetTrans($ChildW, "", 230) GUISetState() While 1 Switch GUIGetMsg() Case -3 Exit Case $Btn MsgBox(262144, "", "Button clicked") EndSwitch WEnd





