Last active
May 24, 2018 21:04
-
-
Save mathewmariani/c07301ce48386918166edc4b1043683c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Messages" | |
set myid to get id of first service | |
set mybuddy to buddy "+11234567890" of service id myid | |
set message to "" | |
repeat 10000 times | |
set message to message & "😘" | |
end repeat | |
send message to mybuddy | |
end tell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Messages" | |
set myid to get id of first service | |
set mybuddy to buddy "+11234567890" of service id myid | |
set message to "😘" | |
repeat 10000 times | |
send message to mybuddy | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment