2013-03-27 69 views
2

我想改變一個顏色插圖畫家文件從一種顏色另一個繼承人我有什麼,但它一直說「找不到顏色」我不知道我'米做錯了嗎?蘋果改變插畫家的顏色

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 

回答

0

看起來它不知道你設置了什麼顏色(即填充顏色,描邊顏色等)。或者如果你只是設置一個名爲'顏色'的變量比你可能需要選擇另一個名稱(類似myColor),因爲這個是保留的

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