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

From TotalcmdWiki
Jump to navigation Jump to search
(Link zur deutschen Seite)
No edit summary
Line 11: Line 11:
Back to [[AutoHotkey]]
Back to [[AutoHotkey]]


[[de:Always copy / move in Queue]]
[[de:Kopieren / Bewegen immer in Warteschlange]]

Revision as of 01:11, 23 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