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: Отключение "Define colors by type" с кнопки 
Author Message
mf-zl



PostPosted: Thu Nov 05, 2009 01:18    Post subject: Reply with quote

Может кому будет интересен скрипт на ахк ? Wink

Code:
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  Project : TC > Toggle "Define colors by file type" option                  *
 *   Author : Mad*Forces / ZeLen1y (zl@mail.by)                                *
 * Compiler : AutoHotkey 1.0.48.5 (www.autohotkey.com)                         *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
                                                                               */
#NoEnv
#NoTrayIcon
#SingleInstance force

SetBatchLines, -1
SetControlDelay, -1
SetWinDelay, -1

If WinActive("ahk_class TTOTAL_CMD")
{ PostMessage, 1075, 494, 0,, ahk_class TTOTAL_CMD
  WinWait, ahk_class TDLGCONFIGALL,, 3
  If !ErrorLevel
  { ControlGet, _d, Checked,, TCheckBox2, ahk_class TDLGCONFIGALL
    Control, % (_d ? "Un" : "") "Check", % !_d, TCheckBox2, ahk_class TDLGCONFIGALL
    ControlClick, TButton37, ahk_class TDLGCONFIGALL
  }
}
ExitApp
View user's profile Send private message Visit poster's website


Powered by phpBB © 2001, 2005 phpBB Group