Flasher

|
Posted: Fri May 28, 2010 14:37 Post subject: |
|
|
Фуф.., сделал. Code: | ; Скрытие/появление панели задач в любых оконных режимах
While 1
GUIGetMsg()
$mpos = MouseGetPos()
If ($mpos[0] <= @DesktopWidth - 0) And ($mpos[1] < @DesktopHeight - 28) Then
WinSetState("[CLASS:Shell_TrayWnd]", "", @SW_HIDE)
EndIf
If ($mpos[0] <= @DesktopWidth - 0) And ($mpos[1] > @DesktopHeight - 2) Then
WinSetState("[CLASS:Shell_TrayWnd]", "", @SW_SHOW)
$list = WinList("[CLASS:Shell_TrayWnd]")
If $list[0][0] > 0 Then WinActivate ($list[1][1])
EndIf
Wend |
|
|