Applescript 右键单击​​一个文件 [英] Applescript right click a file

查看:24
本文介绍了Applescript 右键单击​​一个文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

苹果脚本中是否有命令可以右键单击文件并调出上下文菜单?

Is there a command in apple script to right click a file and bring up the context menu?

我正在寻找类似的东西

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

推荐答案

这是系统事件应用程序的作业.它可用于访问大多数应用程序中的菜单项及其操作,甚至那些无法编写脚本的应用程序.

This is a job for the System Events application. It can be used to reach menu items and their actions in most applications, even those that are otherwise not scriptable.

试试这个:

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/

Check this link for an overview of using System Events if you are so inclined: http://n8henrie.com/2013/03/a-strategy-for-ui-scripting-in-applescript/

这篇关于Applescript 右键单击​​一个文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆