แอพสามารถเชื่อมต่อกับตัวเลือกการแชร์ด้วยNSSharingService API ใหม่ มันเสียงเหมือนการกระทำ LaunchBar ที่กำหนดเองสามารถทำกับแฟ้มที่ปฏิบัติการยูนิกซ์ใด ๆ ดังนั้นคุณอาจจะเขียนเครื่องมือบรรทัดคำสั่งขนาดเล็ก (หรือคุณอาจจำเป็นต้องสร้างแอปที่เกิดขึ้นจริง - คุณจะต้องทดสอบออก) ซึ่งเปิดใช้งาน API นี้ ( ใช้NSSharingServiceNamePostOnTwitter
) และควรแสดงกล่องโต้ตอบทวีต
อัปเดต:เพื่อเริ่มทวีตจาก AppleScript คุณสามารถทำสิ่งต่อไปนี้:
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
นอกจากนี้คุณสามารถสลับ "แสดงการแจ้งเตือนและแบนเนอร์" / ห้ามรบกวนโหมด:
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
(นี่คือทั้งหมดที่เฉพาะเจาะจงกับรูปแบบหน้าต่างปัจจุบันของศูนย์การแจ้งเตือนและมีแนวโน้มที่จะทำลายกับการปรับปรุง OS X ในอนาคต - แต่อาจจะมีการแก้ไขง่าย)