Je suis à la recherche d'une méthode avec AppleScript pour sélectionner / concentrer une fenêtre spécifique d'une application sans réellement faire une "activation" qui amène toutes les fenêtres au premier plan.
Voici ce que j'ai jusqu'à présent:
tell application "Google Chrome"
set windowTitle to title of first window whose title contains "whatever"
end tell
tell application "System Events" to tell process "Google Chrome"
click menu item windowTitle of menu 1 of menu bar item "Window" of menu bar 1
end tell
tell application "Google Chrome" to activate
Le problème est le "activer" dans la dernière ligne. Cela met tout en avant, mais je veux juste une seule fenêtre.
macos
applescript
Aaron Jensen
la source
la source
tell application "System Events" to tell process "Google Chrome" to perform action "AXRaise" of window 1
.execution error: The variable title is not defined. (-2753)
title
parname
.