Dans Mountain Lion, il y a une "feuille de tweet" lors du partage à partir du centre de notification ou d'une application. Le raccourci clavier par défaut pour "envoyer un tweet" est le suivant CMDShiftD . J'aimerais utiliser quelque chose comme CMDRETURN . Existe-t-il un moyen de remapper cela ?
Réponse
Trop de publicités?
Corey Edwards
Points
917
Vous pouvez utiliser Spark pour définir des combinaisons de touches personnalisées pour presque tout ce qui se trouve dans OS X. . Vous pouvez configurer un raccourci pour exécuter un AppleScript et utiliser le script suivant :
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
Source : TUAW