Created
November 29, 2018 02:03
-
-
Save davidnewhall/5b3e63685793fc142a136ef15db7222a to your computer and use it in GitHub Desktop.
Delete every conversation in Messages.app on Sierra using AppleScript
This file contains hidden or 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" | |
activate | |
try | |
repeat (count of (get every chat)) times | |
delete item 1 of (get every chat) | |
tell application "System Events" to tell process "Messages" to keystroke return | |
end repeat | |
end try | |
close every window | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment