论坛帮助 |
社区圈子 |
日历事件 |
2020-06-25, 09:03 | #1 | ||
|
|||
正式会员
等级: 四袋长老
|
var newSpot = doc.swatches; for(var i=0;i<newSpot.length;i++){ var swatch1 = doc.swatches[i]; if(swatch1.color=='[SpotColor]'){ var spot2 = swatch1.color.spot; var colorType2 = spot2.colorType; if(colorType2.toString()== "ColorModel.REGISTRATION") { alert("有"); } else{ alert("没"); } } } 没有角线也提示有 |
||
2020-06-25, 19:26 | 只看该作者 #3 | ||
|
|||
正式会员
等级: 四袋长老
|
引用:
regColor = new SpotColor(); for ( i = 0; i < doc.pathItems.length; i++ ) { if( doc.pathItems[i].strokeColor==regColor){ alert("有"); break; } else{ ; } alert("没"); } 我这样还是不行,请高手指点 |
||
2020-06-26, 09:22 | 只看该作者 #6 | |||
|
||||
高级会员
等级: 七袋长老
|
引用:
这个只是定义了一个新的专色,但你没明确是注册色
__________________
心无所拘 跃然尘外 |
|||
2020-06-26, 09:44 | 只看该作者 #7 | ||
|
|||
正式会员
等级: 六袋长老
|
for ( i = 0; i < doc.pathItems.length; i++ ) { var docSpottint=0; if( doc.pathItems[i].strokeColor.typename=="SpotColor"){ var docSpot=doc.pathItems[i].strokeColor.spot.color; docSpottint=docSpot.cyan+docSpot.magenta+docSpot.yellow+docSpot.black; } if(docSpottint==400 ) { alert("有"); }else{ alert("没"); } } |
||
2020-06-26, 13:57 | 只看该作者 #8 | ||
|
|||
正式会员
等级: 六袋长老
|
var doc = app.activeDocument; for ( i = 0; i < doc.pathItems.length; i++ ) { if( doc.pathItems[i].strokeColor.typename=="SpotColor"){ var docSpot=doc.pathItems[i].strokeColor.spot.colorType; } if(docSpot=="ColorModel.REGISTRATION" ) { alert("有"); }else{ alert("没"); } } |
||
右列会员因为此帖价值甚高向 xiaohaiwu 表示感谢: |
yzx0120 (2020-06-26)
|