In Mountain Lion c'è un "foglio tweet" quando si condivide dal centro notifiche o da un'app. Il tasto di scelta rapida predefinito per "inviare tweet" è CMD Maiusc D . Mi piacerebbe usare qualcosa come CMD RETURN . C'è un modo per rimappare questo?
In Mountain Lion c'è un "foglio tweet" quando si condivide dal centro notifiche o da un'app. Il tasto di scelta rapida predefinito per "inviare tweet" è CMD Maiusc D . Mi piacerebbe usare qualcosa come CMD RETURN . C'è un modo per rimappare questo?
Puoi utilizzare Spark per impostare combinazioni di tasti personalizzate per quasi tutto in OS X . Puoi impostare un collegamento per eseguire un AppleScript e utilizzare il seguente script:
display dialog "Tweet?" default answer "" buttons {"OK"} default button 1
set mytweet to text returned of result
tell application "System Events"
tell process "Notification Center"
click menu bar item 1 of menu bar 1
click button 1 of UI element 1 of row 2 of table 1 of scroll area 1 of window "window"
keystroke mytweet
keystroke "D" using {command down, shift down}
keystroke space
end tell
end tell
Fonte: TUAW
Leggi altre domande sui tag twitter mountain-lion notification-center sharing