作者GodIsland (搞不定吗用C4就对了)
看板EzHotKey
标题Re: [请问] 请问如何让autoit重复输入某个字?
时间Wed May 1 19:12:00 2013
※ 引述《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
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 123.110.151.249
※ 编辑: GodIsland 来自: 123.110.151.249 (05/01 19:13)