Uygulamalar, yeni NSSharingService API ile paylaşım seçeneklerine bağlanabilir . Bu gibi sesler (bu API aktive eder - özel LaunchBar'ı eylemler herhangi bir UNIX yürütülebilir dosya ile yapılabilir muhtemelen küçük bir komut satırı aracı yazabilirsiniz (eğer bunu test gerekecek ya da gerçek bir uygulama oluşturmak gerekebilir) bu yüzden, kullanarak NSSharingServiceNamePostOnTwitter
) ve bu tweet iletişim kutusunu görüntülemelidir.
Güncelleme: AppleScript'ten bir tweet başlatmak için aşağıdakileri yapabilirsiniz:
tell application "System Events"
tell process "Notification Center"
-- activate notification center
if (count of UI elements) is 1 then click first menu bar's first menu bar item
-- click the tweet button
click button 1 of UI element 1 of row 2 of table 1 of scroll area 1 of window "Window"
end tell
end tell
Ayrıca, "Uyarıları ve Afişleri Göster" / rahatsız etmeyin modunu da değiştirebilirsiniz:
tell application "System Events"
tell process "Notification Center"
key down option
click first menu bar's first menu bar item
key up option
end tell
end tell
(Bunların tümü, Bildirim Merkezi'nin geçerli pencere düzenine çok özeldir ve gelecekteki OS X güncellemelerinden kopması muhtemeldir - ancak muhtemelen kolay düzeltmeler olacaktır.)