AutoHotkey: Always copy / move in Queue

From TotalcmdWiki
Revision as of 18:43, 1 June 2008 by White (talk | contribs) (Added category AutoHotkey scripts)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This script sends F2 instead of Enter when in Copy or Move dialog.

Careful: if you redefine the Enter key, it will not work as a terminator for hotstrings, see here: http://www.autohotkey.com/forum/viewtopic.php?t=4232

$Enter::
If WinActive("ahk_class TInpComboDlg")
	Send, {F2}
else
	Send, {Enter}
return


Back to AutoHotkey