1

最近使ったファイルを AppleScript で開くことはできますか? 次のスクリプトを試しましたが、うまくいきません。

on run
    try
        tell application "System Events"
            set theApp to (get name of first process whose frontmost is true)
            click menu bar item "Archivio" of menu bar 1 of process theApp
            click menu item "Apri recente" of menu "Archivio" of menu bar item "Archivio" of menu bar 1 of process theApp
            click menu item " test" of menu "Apri recente" of menu item "Apri recente" of menu "Archivio" of menu bar item "Archivio" of menu bar 1 of process theApp
        end tell
    end try
end run

エラーは

--> エラー番号 -1728 «class menI» "test" の «class menE» の "Apri recente" «class menI» の "Apri recente" «class menE» の "Apri recente" «class mbri» の "Archivio" の "Archivio" «class mbar» «class prcs» の 1 「AppleScript Editor」

4

1 に答える 1

1

「 Apri recente」サブメニューが開いているときのバグのようです。ただし、これは必須ではありません。ワンクリックで実行できます。

tell application "System Events"
    tell (get first process whose frontmost is true)
        click menu item " test" of menu "Apri recente" of menu item "Apri recente" of menu "Archivio" of menu bar item "Archivio" of menu bar 1
    end tell
end tell
于 2012-08-25T12:41:47.153 に答える