创建具有可变输出的 Photoshop 动作/Droplet
我想知道如何:
创建一个保存到相对文件路径的 Droplet。 假设 Droplet 位于桌面上的“batches”文件夹中,并且该文件夹还包含“output”文件夹。所有被删除的内容最终都会出现在输出文件夹中。
我注意到 Photoshop 保存了该文件夹的固定路径。这使得 Droplet 在除我自己的计算机上的任何其他计算机上都毫无用处。
进一步思考:
是否可以远程让 Photoshop 提示用户一次目的地。这也可能是上述问题的可接受的解决方案。
预先感谢您的任何评论、提示、评论等。 时间
I was wondering how to:
create a droplet that saves to a relative filepath.
let's say the droplet is on the desktop in the folder "batches" and this folder also contains the folder "output". Everything that gets dropped will end up in the output folder.
I've noticed that photoshop saves a fixed path to this folder. This renders the droplet useless on any other computer than my own.
Even further pondering:
Is it remotely possible to let photoshop prompt the user once for a destination. This could also be an acceptable solution to the above.
Thanks in advance for any comments,tips,remarks,etc.
T
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我的经验,处理此问题的最佳且最简单的方法是制作要转换的文件的工作副本。然后,在创建 Droplet 时,选择“保存并关闭”以覆盖源文件。
这种方法的危险在于用户会覆盖源文件。然而,这可以通过围绕 Photoshop Droplet 创建脚本或 Automator 动作来解决。它首先将文件复制到目的地,然后运行 Droplet。
In my experience, the best and simplest way to handle this is to make a working copy of the files you want to transform. Then when creating the droplet, choose "Save and Close" to overwrite the source files.
The danger of this method is that the user will overwrite source files. However, this can be remedied by creating a script or Automator action around the photoshop droplet. It would first copy the files to the destination, then run the droplet.