Saya mencari metode w / AppleScript untuk memilih / memfokuskan jendela aplikasi tertentu tanpa benar-benar melakukan "aktifkan" yang membawa semua jendela ke depan.
Inilah yang saya miliki sejauh ini:
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
Masalahnya adalah "aktifkan" di baris terakhir. Itu membawa segalanya ke depan, tapi saya hanya ingin satu jendela.
macos
applescript
Aaron Jensen
sumber
sumber
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
kename
.