使用 Applescript 在 Photoshop 中打开文件

发布于 2024-10-12 16:24:13 字数 482 浏览 2 评论 0原文

我正在尝试使用 Applescript 在 Photoshop 中自动执行任务。

尝试打开文件时:

tell application "Adobe Photoshop CS5"

 -- Open the first image
 set filePath to alias "Users:jameshale:Pictures:DSC_1273.jpg"
 with timeout of 5 seconds
  open filePath as Camera RAW
 end timeout

end tell

结果出现错误:

error "Adobe Photoshop CS5 got an error: Can’t get alias \"Users:jameshale:Pictures:DSC_1273.jpg\"." number -1728

我做错了什么?

-J

I am trying to use Applescript to automate a task in photoshop.

When attempting to open a file:

tell application "Adobe Photoshop CS5"

 -- Open the first image
 set filePath to alias "Users:jameshale:Pictures:DSC_1273.jpg"
 with timeout of 5 seconds
  open filePath as Camera RAW
 end timeout

end tell

The result is an error:

error "Adobe Photoshop CS5 got an error: Can’t get alias \"Users:jameshale:Pictures:DSC_1273.jpg\"." number -1728

What am I doing wrong?

-J

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

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

发布评论

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

评论(1

那片花海 2024-10-19 16:24:13

别名路径在根中包含 HD 名称。所以你需要将你的一行更改为这一行

// Replace Macintosh HD with your HD name 
set filePath to alias "Macintosh HD:Users:jameshale:Pictures:DSC_1273.jpg"

An alias path includes the HD name in the root. So you need to change your one line to this

// Replace Macintosh HD with your HD name 
set filePath to alias "Macintosh HD:Users:jameshale:Pictures:DSC_1273.jpg"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文