2

我正在尝试将 illustrator 文档中的颜色从一种颜色更改为另一种颜色,但它一直在说“找不到颜色”,我不确定我做错了什么?

tell application "Adobe Illustrator"

          if exists color is equal to "C=0 M=0 Y=0 K=90" then

                    set color to "C=0 M=0 Y=0 K=100"

          end if
end tell
4

2 回答 2

1
tell application "Adobe Illustrator"
    set allMyItems to every path item of current document whose fill color is {cyan:0.0, magenta:0.0, yellow:0.0, black:90.0}
    repeat with myItem in allMyItems
        set fill color of myItem to {cyan:0.0, magenta:0.0, yellow:0.0, black:100.0}
    end repeat
end tell
于 2013-05-02T16:55:54.210 回答
0

看起来它无法理解您设置的确切颜色(即填充颜色、描边颜色等)。或者,如果您只是设置了一个名为“color”的变量,那么您可能需要选择另一个名称(例如 myColor),因为这个名称是保留的

于 2013-03-27T07:34:31.640 回答