Skip to content

Instantly share code, notes, and snippets.

@krsntn
Last active November 1, 2020 09:37
Show Gist options
  • Select an option

  • Save krsntn/35fae1c2ceef213745004544e74bc117 to your computer and use it in GitHub Desktop.

Select an option

Save krsntn/35fae1c2ceef213745004544e74bc117 to your computer and use it in GitHub Desktop.
an AppleScript to spam on chat
delay 2
property currentCount : 1
set the clipboard to "input message"
repeat 100 times
tell application "System Events"
-- keystroke currentCount
-- keystroke ". "
keystroke "v" using command down
keystroke return
set currentCount to currentCount + 1
-- delay 0.1
end tell
end repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment