0

我正在尝试使用 AppleScript 将 InDesign 中的现有色板转换为新颜色,但我发现它相当困难。

我收到一个错误代码,因此:

error "Adobe InDesign CS5.5 got an error: Can’t set color of swatch \"CLIENT1\" of document id 12 to {0, 100, 100, 5}." number -10006 from color of swatch "CLIENT1" of document id 12

我用来调整样本的代码是这样的:

set color of swatch "CLIENT1" to c1

任何帮助将不胜感激。这让我疯狂。

干杯。

4

2 回答 2

0

这在 CS2 中适用于 cmyk 色板:

set color value of swatch "CLIENT1" to {0, 20, 50, 10}

您必须设置所有 4 个值。如果它是 rgb 色板,您只需要 3 个值。

于 2012-05-17T12:34:48.900 回答
0

解决了!对于其他人来说,解决方案是:

set color value of color "CLIENT1" to c1

享受。

于 2012-05-18T00:04:57.257 回答