gpt4 book ai didi

applescript - 使用 Applescript 编写 Photoshop 脚本 — 无法使用 "choose file"打开图像

转载 作者:行者123 更新时间:2023-12-04 06:03:54 24 4
gpt4 key购买 nike

我知道我在这里遗漏了一些非常简单的东西,但我无法弄清楚它是什么。如果我使用以下脚本:

tell application "Adobe Photoshop CS5.1"
open file "path:to:some:file"
end tell

它没有问题,但如果我尝试使用“选择文件”对话框,一切都会崩溃:
tell application "Adobe Photoshop CS5.1"
set myFile to choose file
open myFile
end tell

我收到一个错误
error "Adobe Photoshop CS5.1 got an error: File some object wasn’t found." number -43

我在这里缺少什么?

最佳答案

出于某种原因,Photoshop CS5.1 不再支持打开基于别名的文件引用。

您需要将路径转换为字符串,并在 myFile 变量前加上 file。

tell application "Adobe Photoshop CS5.1"
set myFile to (choose file) as string
open file myFile
end tell

关于applescript - 使用 Applescript 编写 Photoshop 脚本 — 无法使用 "choose file"打开图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8604367/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com