Hello guys!
I have a little problem in one of my function/functions. Here is my code:
Func IsVisible($handle)
If BitAND(WinGetState($handle), 4) Then
;If Not BitAND(WinGetState($handle), 16) Then
If BitAND(WinGetState($handle), 2) Then
Return 1
Else
Return 0
EndIf
EndIf
EndFunc...