Ich suche nach einer Methode mit AppleScript, um ein bestimmtes Fenster einer Anwendung auszuwählen / zu fokussieren, ohne tatsächlich ein "Aktivieren" durchzuführen, das alle Fenster nach vorne bringt .
Folgendes habe ich bisher:
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
Das Problem ist das "Aktivieren" in der letzten Zeile. Das bringt alles nach vorne, aber ich will nur das eine Fenster.
macos
applescript
Aaron Jensen
quelle
quelle
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
zuname
.