# Adobe系列软件控制 # 概要 用于对Photoshop、Illustrator、AE等软件运行jsx脚本。
需要启动软件后才能使用。
![image.png](https://cdn.nlark.com/yuque/0/2022/png/272392/1655433503016-0bd01ee4-41e2-480c-b82b-f1f2853ee3ec.png#averageHue=%23fcfcfb&clientId=uf895ff42-8dba-4&from=paste&height=692&id=ufbf3fc85&originHeight=1038&originWidth=1257&originalType=binary&ratio=1&rotation=0&showTitle=false&size=71776&status=done&style=none&taskId=uf3dfa2d7-ea58-4f64-a21a-63d7af8840b&title=&width=838)
注意:如果同时安装了多个版本的软件,只能控制其中一个版本。在其它版本上使用会报错 `操作无法使用 (异常来自 HRESULT:0x800401E3 (MK_E_UNAVAILABLE))`。 【软件名称】选择要执行脚本的软件。 【操作类型】 - 执行js脚本:参数中指定要运行的脚本内容。 - 执行js脚本文件:参数中指定jsx文件的路径。 【脚本内容】 - jsx脚本内容。 【等待执行结束】
是否等待脚本执行结束后再进行后续步骤。
【接口失败后,尝试使用程序exe运行脚本文件】
当系统环境不支持使用接口运行脚本时,尝试使用`photoshop.exe -r path.jsx`的方式执行脚本。这种情况下无法获知脚本是否执行成功,无法等待脚本执行完成。 【脚本输出】
从脚本中返回的内容。 - 仅在通过接口、等待执行结束的方式执行脚本时可返回内容。 - 仅支持PS、Illustrator。 - 仅支持简单类型的内容,不支持返回object。 ![image.png](https://cdn.nlark.com/yuque/0/2023/png/272392/1694701956652-fc16ba52-157a-4457-9259-d4061a06bf49.png#averageHue=%23fbfafa&clientId=ub55546f1-e661-4&from=paste&height=87&id=ua6667051&originHeight=130&originWidth=567&originalType=binary&ratio=1.5&rotation=0&showTitle=false&size=9849&status=done&style=none&taskId=u81d7e231-5884-4b47-94ed-a72258a17f4&title=&width=378) **示例动作** - [右转90度](https://getquicker.net/Sharedaction?code=f757e64d-dff9-4bc1-6b82-08da4f3f8574):画布向右旋转90度 - [批量生成不同尺寸图标](https://getquicker.net/Sharedaction?code=56fba2f1-898e-403a-6b87-08da4f3f8574) **参考文档** - [Photoshop 脚本教程](https://github.com/Adobe-CEP/CEP-Resources/blob/master/Documentation/Product%20specific%20Documentation/Photoshop%20Scripting/photoshop-scripting-guide-2020.pdf) # 问题排查 ## 0x800401E1 (MK_E_UNAVAILABLE) ![image.png](https://cdn.nlark.com/yuque/0/2023/png/272392/1695460920357-08ff5244-b1bb-4101-b0f9-933b4b58c839.png#averageHue=%23f4b330&clientId=u7aeda26e-6c07-4&from=paste&height=99&id=u876633d8&originHeight=149&originWidth=603&originalType=binary&ratio=1.5&rotation=0&showTitle=false&size=44681&status=done&style=none&taskId=ubdf57235-062d-4131-acc0-866dffbad16&title=&width=402)
1)确认您安装的PS是完整版而非绿色版。
2)确认系统UAC设置为默认,如果修改过,改为默认后重启Windows。
![image.png](https://cdn.nlark.com/yuque/0/2023/png/272392/1695461070936-a9adfb77-d3fd-4cc8-baf5-b8a94bbfe707.png#averageHue=%23fbfbfa&clientId=u7aeda26e-6c07-4&from=paste&height=553&id=u39004e98&originHeight=830&originWidth=1120&originalType=binary&ratio=1.5&rotation=0&showTitle=false&size=60308&status=done&style=none&taskId=ub2321d93-9d13-4ef3-a561-99ec6be1801&title=&width=746.6666666666666) # 更新历史 - 20230914 增加返回内容的功能。 - 20230923 1.39.33 支持同时安装多个Photoshop、 AI 的情况。