Talk:AutoHotkey: Paste TC's active path anywhere: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
mNo edit summary
(Another version without the fuss with the clipboard)
Line 2: Line 2:


SanskritFritz
SanskritFritz
== Another version without the fuss with the clipboard ==
#IfWinExist ahk_class TTOTAL_CMD
#a::
ControlGetText sPath, TMyPanel2
StringMid sPath, sPath, 1, StrLen(sPath) -1
Send %sPath%\
Return
#IfWinExist

Revision as of 21:20, 23 June 2006

Thanks, Hacker!

SanskritFritz

Another version without the fuss with the clipboard

#IfWinExist ahk_class TTOTAL_CMD
#a::
	ControlGetText sPath, TMyPanel2
	StringMid sPath, sPath, 1, StrLen(sPath) -1
	Send %sPath%\
	Return
#IfWinExist