appleScriptのヘルプが必要です。
開いているすべてのウィンドウについて、どれが(ドックに)隠されているのか、どれが表示されているのか、どれがフォーカスされているのかを知りたいですか?
私が使用するウィンドウを一覧表示するには:
tell application "System Events"
set procs to processes
set windowName to {}
repeat with proc in procs
try
if exists (window 1 of proc) then
repeat with w in windows of proc
copy w's name to the end of windowName
end repeat
end if
end try -- ignore errors
end repeat
end tell
return windowName
私は焦点を絞ったプロパティを試しました:
copy w's focused to the end of windowName
および選択したプロパティ:
copy w's selected to the end of windowName
しかし、これは機能しません!
手伝ってくれてありがとう!