Talk:AutoHotkey: Unpack each archive to a separate subdir

From TotalcmdWiki
Revision as of 11:22, 8 August 2005 by Hacker (talk | contribs) (Script #2 timer modification)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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