0

アップルスクリプトは初めてです。ダイアログ ボックス/ウィンドウ内の要素にアクセスしたい。次のコードを試しました。

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で私を助けることができますか?

4

1 に答える 1

0

ウィンドウにその名前とプロパティを要求しているだけです。その要素が必要な場合は、その「UI要素」を求めてください。

于 2012-09-20T13:50:39.307 に答える