commande pour afficher toutes les Keystroke signets dans Safari ne fonctionne pas

StackOverflow https://stackoverflow.com/questions/3974768

  •  09-10-2019
  •  | 
  •  

Question

Je suis en train une simple commande pour afficher tous les Keystroke signets dans Safari 5.0.2, mais il ne fonctionne pas -

tell application "Safari" to activate
tell application "System Events"
    keystroke "B" using {option down, command down}
end tell
end

Quelqu'un peut-il me suggérer où je peux me tromper?

Merci,

Miraaj

Était-ce utile?

La solution

Essayez un peu 'b':

tell application "Safari" to activate
tell application "System Events"
    keystroke "b" using {option down, command down}
end tell

Le grand B se traduit Maj + B .

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top