Mi piacerebbe avere un tasto di scelta rapida globale per inviare un nuovo messaggio usando Thunderbird in Mac OS. Come posso fare questo?
Puoi assegnare una tastiera collegamento a uno script come questo:
tell application "Thunderbird"
reopen
activate
end tell
tell application "System Events" to tell process "Thunderbird"
repeat 10 times
try
click menu item "Message" of menu 1 of menu item "New" of menu "File" of menu bar 1
return
on error
delay 0.1
end try
end repeat
end tell
Se Thunderbird non era aperto prima dell'esecuzione dello script, c'è un breve ritardo prima che la barra dei menu venga popolata.
Modifica: questo non riapre la finestra principale o cambia desktop se la finestra principale è già aperta su un desktop diverso :
launch application "Thunderbird"
tell application "System Events" to tell process "Thunderbird"
repeat 10 times
try
click menu item "Message" of menu 1 of menu item "New" of menu "File" of menu bar 1
exit repeat
on error
delay 0.1
end try
end repeat
set frontmost to true
end tell
Modifica 2: anche il secondo script a volte cambia desktop, ma non sono riuscito a capire come prevenirlo.