Total Commander Forum Index Total Commander
Форум поддержки пользователей Total Commander
Сайты: Все о Total Commander | Totalcmd.net | Ghisler.com | RU.TCKB
 
 RulesRules   SearchSearch   FAQFAQ   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Single Post  Topic: Активация окна Total Commander движением мыши 
Author Message
Flasher



PostPosted: Fri May 28, 2010 14:37    Post subject: Reply with quote

Фуф.., сделал.
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
View user's profile Send private message


Powered by phpBB © 2001, 2005 phpBB Group