Talk:AutoHotkey: Paste TC's active path anywhere

From TotalcmdWiki
Revision as of 21:20, 23 June 2006 by SanskritFritz (talk | contribs) (Another version without the fuss with the clipboard)
Jump to navigation Jump to search

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