すべてのウィンドウを前面に表示する「アクティブ化」を実際に行わずに、アプリケーションの特定のウィンドウを選択/フォーカスするメソッドをAppleScriptで探しています。
ここに私が持っているものがあります:
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
問題は、最後の行の「アクティブ化」です。これですべてが前面に表示されますが、1つのウィンドウが必要です。