Talk:AutoHotkey: Unpack each archive to a separate subdir

From TotalcmdWiki
Jump to navigation Jump to search

--Hacker 06:22, 8 Aug 2005 (EST)

IMHO the second script would be better off using a timer, like

#Persistent
	SetTimer, OnUnpackDialog, 200
return

OnUnpackDialog:
	ControlSend, TCheckBox1, {SPACE}
	ControlFocus, TEdit2
	;Send {DEL}
return