0

このエラーが発生する理由を誰が教えてくれますか:

error "システム イベントでエラーが発生しました: プロセス \"Adobe Reader\" のメニュー バー 1 のメニュー \"ファイル\" のメニュー項目 \"名前を付けて保存\" のメニュー項目 \"テキスト…\" を取得できません。" プロセス「Adobe Reader」のメニューバー1のメニュー「ファイル」のメニュー項目「名前を付けて保存」のメニュー項目「テキスト…」から番号-1728

このコードの場合:

tell application "Adobe Reader"
tell application "System Events"
    tell process "Adobe Reader"
        tell menu bar 1
            tell menu "File"
                tell menu item "Save As"
                    click menu item "Text…"
                end tell
            end tell
        end tell
    end tell
end tell
end tell
4

1 に答える 1

1

試す

activate application "Adobe Reader"
tell application "System Events"
    tell process "Adobe Reader"
        click menu item "Text..." of menu 1 of menu item "Save As" of menu 1 of menu bar item "File" of menu bar 1
    end tell
end tell
于 2012-10-04T00:11:57.183 に答える