Isso usado para funcionar:
tell application "System Events"
tell process "NotificationCenter"
click at {2500, 50}
end tell
end tell
Mas no Mavericks isso me dá "Eventos do sistema com um erro: não é possível criar {2500, 50} na lista de tipos". Eu finalmente encontrei uma correção, no entanto:
tell application "System Events"
tell process "NotificationCenter"
click button "Close" of window 1
end tell
end tell
Isso fecha a última notificação, o que é bom o suficiente para mim.
Também é útil este script para nuke all:
tell application "System Events"
tell process "NotificationCenter"
set numwins to (count windows)
repeat with i from numwins to 1 by -1
click button "Close" of window i
end repeat
end tell
end tell