如何使用applescript访问应用程序中的下拉菜单?

发布于 2024-11-29 13:36:05 字数 86 浏览 1 评论 0原文

我试图告诉 applescript 打开应用程序“应用程序加载器”,然后从窗口中的下拉列表中进行选择。应选择的项目始终是第一个项目。我该怎么做? 提前致谢。

I'm trying to tell applescript to open the app, Application Loader, and choose from the drop down list that's in the window. The item that should be chosen will always be the very first item. How do i do this?
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木有鱼丸 2024-12-06 13:36:05

哇我终于成功了!我对我的脚本非常生气,所以我只是输入了一个随机的 ASCII 数字,它神奇地工作了。我很高兴啊哈哈:)

activate application "Application Loader"
tell application "System Events"
    tell process "Application Loader"
        tell the first combo box of window 1
            delay 3
            keystroke (ASCII character 30)
            keystroke (ASCII character 12)
            keystroke return
        end tell
    end tell
end tell

Wow I finally got it working! I pretty much got mad at my script so I just put a random ASCII number and it magically worked. I got pretty happy aha :)

activate application "Application Loader"
tell application "System Events"
    tell process "Application Loader"
        tell the first combo box of window 1
            delay 3
            keystroke (ASCII character 30)
            keystroke (ASCII character 12)
            keystroke return
        end tell
    end tell
end tell
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文