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: Как убрать "Administrator^" в заголовке окна TC на Win7? 
Author Message
LonerD



PostPosted: Tue Sep 11, 2012 23:07    Post subject: Reply with quote

Mellomann
Code:
#SingleInstance ignore
#Persistent
#NoTrayIcon
if WinActive( "ahk_class TTOTAL_CMD" )
{
WinSetTitle Total Commander
}
Return

А можно и с часиками в заголовке сделать Smile :
Code:
#SingleInstance ignore
#Persistent
#NoTrayIcon
SetTimer subTimer, 500
subTimer:
if WinActive( "ahk_class TTOTAL_CMD" )
{
FormatTime, time,, yyyy.MM.dd - HH:mm:ss
WinSetTitle Total Commander by Vasya Pupkin - %time%
}
Return
View user's profile Send private message Visit poster's website ICQ Number


Powered by phpBB © 2001, 2005 phpBB Group