Sembra che il seguente AppleScript non funzioni più con l'ultima versione di OS X 10.10 (Yosemite):
on run
tell application "System Events"
tell process "Notification Center"
set theseWindows to every window
display notification (count of theseWindows)
end tell
end tell
end run
Si supponeva che tutte le notifiche fossero elencate nel Centro di notifica. Tuttavia, l'attributo count restituisce sempre 0.
Qualcuno sa come recuperare tutte le notifiche nel Centro notifiche diverso dallo script sopra?
Thnaks per l'aiuto!