AutoHotkey: Always copy / move in Queue

From TotalcmdWiki
Revision as of 18:04, 22 August 2005 by Hacker (talk | contribs)
(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.

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