アップルスクリプトは初めてです。ダイアログ ボックス/ウィンドウ内の要素にアクセスしたい。次のコードを試しました。
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
if w's name contains "App Name" then
copy w's name to the end of windowName
copy properties of w to the end of windowName
end if
end repeat
end if
end try -- ignore errors
end repeat
end tell
return windowName
しかし、ウィンドウから 4 つの要素しか取得できません: 1.Close 2.Minimize 3.Maximize 4.window title
ウィンドウ/ダイログ内からは何もありません。
誰でもこのplsで私を助けることができますか?