Re: [请问] 请问如何让autoit重复输入某个字?

楼主: GodIsland (搞不定吗用C4就对了)   2013-05-01 19:12:00
※ 引述《runwind (星夜)》之铭言:
: 当我按下F8会让autoit重复输入键盘上的A B C 然后A B C时间 要互相间隔1秒
: 直到我按下F7才会停止
参考官网 Function HotKeySet 范例改写
http://www.autoitscript.com/autoit3/docs/functions/HotKeySet.htm
丑丑的,但是会动、会暂停
Global $Paused
HotKeySet("{F7}", "Pause")
HotKeySet("{F8}", "Input_ABC")
While 1
Sleep(100)
WEnd
Func Pause()
$Paused = Not $Paused
While $Paused
Sleep(100)
ToolTip('Script is "Paused"', 0, 0)
WEnd
ToolTip("")
EndFunc
Func Input_ABC()
For $i = 0 To 9999
Send("{A}")
Sleep(1000)
Send("{B}")
Sleep(1000)
Send("{C}")
Sleep(1000)
$i += 1
Next
EndFunc

Links booklink

Contact Us: admin [ a t ] ucptt.com