Skip to content

Instantly share code, notes, and snippets.

@mcdlee
Created October 22, 2020 10:02
Show Gist options
  • Save mcdlee/7d0e596a2ca6b7d86ede600c35734be6 to your computer and use it in GitHub Desktop.
Save mcdlee/7d0e596a2ca6b7d86ede600c35734be6 to your computer and use it in GitHub Desktop.
AW_repeat.ahk
^j::RepeatClick() ;請按 ctrl-j
RepeatClick() {
InputBox, repeat, Repeat, How many times do you want to repeat?
Loop, %repeat%
{
Send {F3}
Sleep, 500
Click, 100, 300 ;不會妨礙操作的座標
Send ^{Click, WheelDown} ;ctrl-滾輪下
Sleep, 500
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment