Created
August 5, 2017 03:08
-
-
Save nandomoreirame/e34768944e28ffefb272923b27e31ca7 to your computer and use it in GitHub Desktop.
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
| my closeNotif() | |
| on closeNotif() | |
| tell application "System Events" | |
| tell process "Notification Center" | |
| set theWindows to every window | |
| repeat with i from 1 to number of items in theWindows | |
| set this_item to item i of theWindows | |
| try | |
| click button 1 of this_item | |
| on error | |
| my closeNotif() | |
| end try | |
| end repeat | |
| end tell | |
| end tell | |
| end closeNotif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment