AutoHotkey: Always copy / move in Queue: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
mNo edit summary
(Link zur deutschen Seite)
Line 10: Line 10:


Back to [[AutoHotkey]]
Back to [[AutoHotkey]]
[[de:Always copy / move in Queue]]

Revision as of 20:14, 22 September 2005

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


Back to AutoHotkey