AutoHotkey: Start Notepad In Lister: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
(Optimized AHK syntax)
Line 1: Line 1:
Pressing F4 in TC Lister starts Notepad with the active document.
Pressing F4 in TC Lister starts Notepad with the active document.
 
If you want to start an alternative utility instead, replace '''''notepad.exe''''' with the appropriate path.
; If you want to start an alternative editor instead, replace '''''notepad.exe''''' to match yours.
   
   
  ~F4::
  #IfWinActive, ahk_class TLister
IfWinActive, ahk_class TLister
  F4::
  {
WinGetTitle, title
  WinGetTitle, title
left := InStr(title, "[") + 1
  left := InStr(title, "[")+1
right := InStr(title, "]") - left
  right := InStr(title, "]")-left
StringMid, listerpath, title, left, right
  StringMid, listerpath, title, left, right
WinClose, ahk_class TLister
  WinClose, ahk_class TLister
Run, notepad.exe "%listerpath%"
  Run, notepad.exe %listerpath%
}
  Return
  Return



Revision as of 12:56, 1 June 2006

Pressing F4 in TC Lister starts Notepad with the active document. If you want to start an alternative utility instead, replace notepad.exe with the appropriate path.

#IfWinActive, ahk_class TLister
F4::
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