AppleScriptプログラムについて助けが必要です。
開いていてドックにあるすべてのウィンドウを一覧表示したいので、これを試しました:
tell application "System Events"
set procs to processes
set windowInDock to {}
repeat with proc in procs
try
if exists (window 1 of proc) then
repeat with w in (every window of proc whose miniaturized is true)
copy a & w's miniaturized to the end of windowInDock
end repeat
end if
end try -- ignore errors
end repeat
end tell
return windowInDock
ただし、空の配列を返します。
すべてのウィンドウを一覧表示して、小型化されたパラメーター(wは小型化)を取得しようとしましたが、機能しません。
何か考えはありますか?
ありがとうございました!