AutoHotkey: Run or activate Total Commander: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
(Added category AutoHotkey scripts)
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
  !+w::
  !+w::
  if not WinExist( "ahk_class TTOTAL_CMD" )
  if not WinExist( "ahk_class TTOTAL_CMD" )
  Run c:\Program Files\Total Commander\TOTALCMD.EXE
  Run "%COMMANDER_PATH%\Totalcmd.exe"
  WinActivate
  WinActivate
  Return
  Return
Line 10: Line 10:
<BR>Back to [[AutoHotkey]]<BR>
<BR>Back to [[AutoHotkey]]<BR>


[[Category:AutoHotkey scripts|Run or activate Total Commander]]
[[de:AutoHotkey: Starte Total Commander oder bringe sein Programmfenster in den Vordergrund]]
[[de:AutoHotkey: Starte Total Commander oder bringe sein Programmfenster in den Vordergrund]]

Latest revision as of 11:26, 31 May 2008

; Alt-Shift-W (Run or activate Total Commander)
!+w::
	if not WinExist( "ahk_class TTOTAL_CMD" )
		Run "%COMMANDER_PATH%\Totalcmd.exe"
	WinActivate
	Return




Back to AutoHotkey