论坛帮助 |
社区圈子 |
日历事件 |
2022-09-27, 17:42 | #1 | ||
|
|||
正式会员
等级: 五袋长老
|
代码:
#target 'illustrator' #targetengine com.adobe.illustrator.demo.flashplayer//目标软件是ai if ( app.documents.length > 0 && app.activeDocument.pathItems.length > 0 ) { for (var i = 0; i < app.activeDocument.selection.length; i++ ) { pathRef = app.activeDocument.selection[i]//循环被选中的对象 pathRef.stroked =true;//添加描边 pathRef.strokeWidth= 0.1*2.834646;//粗细可以自己改 默认0.1mm pathRef.strokeColor=pathRef.fillColor;//描边颜色为填充颜色 pathRef.strokeOverprint = true//描边叠印 } } 警告:因实用本脚本出现的错误,本人概不负责,还需仔细检查校对! |
||
2022-09-27, 19:22 | 只看该作者 #2 | |||
|
||||
痴痴呆呆坐埋一台
等级: 九袋长老
|
__________________
本人从事农业生产为主,上有大要孝顺照顾,下有小要供书教学。为了生活偶尔涉及以下工作类型 印刷色彩管理,显示器、打印机、印刷机颜色高度匹配、GMG,CGS数码打样、pressSIGN印刷评分、提供G7企业认证、Fogra PSO培训等(完成过水墨柔印g7 targeted认证) 维修印能捷各种问题,印前流程标准规范化制定及培训 承接书版包装色彩管理数码打稿fogra,gracol,或客自定icc。 |
|||
2022-09-28, 08:05 | 只看该作者 #5 | ||
|
|||
正式会员
等级: 五袋长老
|
代码:
#target 'illustrator' #targetengine com.adobe.illustrator.demo.flashplayer//目标软件是ai if ( app.documents.length > 0 && app.activeDocument.pathItems.length > 0 ) { for (var i = 0; i < app.activeDocument.selection.length; i++ ) { lujing = app.activeDocument.selection[i]//循环被选中的对象 for (var j = 0; j < lujing.pathItems.length; j++ ) { pathRef = lujing.pathItems[j]//循环被选中的对象 pathRef.stroked =true;//添加描边 pathRef.strokeWidth= 0.1*2.834646;//粗细可以自己改 默认0.1mm pathRef.strokeColor=pathRef.fillColor;//描边颜色为填充颜色 pathRef.strokeOverprint = true//描边叠印 pathRef.strokeJoin = StrokeJoin.ROUNDENDJOIN //圆角拐点 } } } 还有一个问题还有待大神解决,就是 编组里面有复合路径的情况,比如转曲后的段落文字。 |
||
右列会员因为此帖价值甚高向 792491914 表示感谢: |
yao70 (2022-09-28)
|
2022-09-28, 09:03 | 只看该作者 #6 | ||
|
|||
正式会员
等级: 四袋长老
|
#targetengine com.adobe.illustrator.demo.flashplayer//目标软件是ai if ( app.documents.length > 0 && app.activeDocument.pathItems.length > 0 ) { for (var i = 0; i < app.activeDocument.selection.length; i++ ) { var lujing = app.activeDocument.selection if(lujing[i].typename == 'PathItem'){ pathRef = lujing[i]//循环被选中的对象 pathRef.stroked =true;//添加描边 pathRef.strokeWidth= 0.1*2.834646;//粗细可以自己改 默认0.1mm pathRef.strokeColor=pathRef.fillColor;//描边颜色为填充颜色 pathRef.strokeOverprint = true//描边叠印 pathRef.strokeJoin = StrokeJoin.ROUNDENDJOIN //圆角拐点 } else if (lujing[i].typename == 'CompoundPathItem'){ pathRef = lujing[i].pathItems[0]//循环被选中的对象 pathRef.stroked =true;//添加描边 pathRef.strokeWidth= 0.1*2.834646;//粗细可以自己改 默认0.1mm pathRef.strokeColor=pathRef.fillColor;//描边颜色为填充颜色 pathRef.strokeOverprint = true//描边叠印 pathRef.strokeJoin = StrokeJoin.ROUNDENDJOIN //圆角拐点 } else {break} } } |
||
右列会员因为此帖价值甚高向 MaFia丶枫语 表示感谢: |
792491914 (2022-09-28)
|
2022-09-28, 09:04 | 只看该作者 #7 | ||
|
|||
正式会员
等级: 四袋长老
|
引用:
|
||