5

ファイルを右クリックしてコンテキストメニューを表示するアップルスクリプトのコマンドはありますか?

私は次のようなものを探しています

tell application "Finder"
    set theDesktopItems to every item of desktop
    right click item 1 of theDesktopItems
end tell
4

1 に答える 1

6

これは、システム イベント アプリケーションのジョブです。他の方法ではスクリプト化できないアプリケーションであっても、ほとんどのアプリケーションでメニュー項目とそのアクションに到達するために使用できます。

これを試して:

tell application "System Events"
    tell process "Finder"
        set target_index to 1
        set target to image target_index of group 1 of scroll area 1
        tell target to perform action "AXShowMenu"
    end tell
end tell

システム イベントの使用の概要については、次のリンクを確認してください: http://n8henrie.com/2013/03/a-strategy-for-ui-scripting-in-applescript/

于 2013-08-21T08:02:37.327 に答える