AutoHotkey: Start Notepad In Lister: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 13: Line 13:
  }
  }
  Return
  Return
Back to [[AutoHotkey]]

Revision as of 20:06, 19 July 2005

; Pressing F4 in TC Lister starts Notepad with the active document
; If you want to start a different editor exchange the line containing notepad.exe

~F4::
IfWinActive, ahk_class TLister
{
  WinGetTitle, title
  left := InStr(title, "[")+1
  right := InStr(title, "]")-left
  StringMid, listerpath, title, left, right
  WinClose, ahk_class TLister
  Run, notepad.exe %listerpath%
}
Return


Back to AutoHotkey