论坛帮助 |
社区圈子 |
日历事件 |
2022-12-03, 20:14 | 只看该作者 #46 | |||
|
||||
正式会员
等级: 五袋长老
|
引用:
|
|||
2022-12-04, 11:56 | 只看该作者 #48 | ||
|
|||
正式会员
等级: 四袋长老
|
#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]//循环被选中的对象 miaobian(pathRef) } else if (lujing[i].typename == 'CompoundPathItem') { pathRef = lujing[i].pathItems[0]//循环被选中的对象 miaobian(pathRef) } else if (lujing[i].typename == 'GroupItem') { var luji = lujing[i] qunzu(luji) } else { break } } } function miaobian(ojb) { ojb.stroked = true;//添加描边 ojb.strokeWidth = 0.1 * 2.834646;//粗细可以自己改 默认0.1mm ojb.strokeColor = ojb.fillColor;//描边颜色为填充颜色 ojb.strokeOverprint = true//描边叠印 ojb.strokeJoin = StrokeJoin.ROUNDENDJOIN //圆角拐点 } function qunzu(ojb) { for (j = 0; j < ojb.pathItems.length; j++) { if (ojb.pathItems[j].filled == true && ojb.pathItems[j].parent.typename != 'CompoundPathItem') { pathRef = ojb.pathItems[j] //循环被选中的对象 miaobian(pathRef) } } for (j = 0; j < ojb.compoundPathItems.length; j++) { if (ojb.compoundPathItems[j].pathItems[0].filled == true) { pathRef = ojb.compoundPathItems[j].pathItems[0]//循环被选中的对象 miaobian(pathRef) } } if (ojb.groupItems.length > 0) { for (var i = 0; i < ojb.groupItems.length; i++) { qunzu(ojb.groupItems[i]) } } } 试试 |
||
2022-12-05, 17:47 | 只看该作者 #51 | |||
|
||||
购买金币请联系微信
等级: 八袋长老
|
__________________
Illustrator Quicker工具箱,分层分画板导出JPG或PDF,标注尺寸,多重复制,更新链接,更新页码,嵌入图片替换链接等等 接受 Quicker 动作及简单AI脚本定制 QQ:842504060 微信:neteasy2014 |
|||