论坛帮助 |
社区圈子 |
日历事件 |
2021-06-29, 17:51 | #1 | |||
|
||||
正式会员
等级: 四袋长老
|
【特别注意】:经过长期的试用也掉过坑,渐变和蒙板会变掉,所以现在只能作为佛系导图确认,作为生产助手有风险。有大佬看看能不能优化改进。 #include "doEx.jsx" var doc = activeDocument; doc.rulerOrigin = [0, 0]; var layerN = doc.layers.length; for (var i = 1; i < layerN; i++) { doc.artboards.add([i * doc.width - 8000,doc.height,doc.width * (i + 1) - 8000,0]); } doc.rearrangeArtboards(DocumentArtboardLayout.GridByRow, Math.ceil(Math.sqrt(layerN)), 20, false); var abArr = []; doEx("artboards").each(function () { abArr.push([this.artboardRect[0], this.artboardRect[3]]) }); var i = 0; doEx("layers").each(function () { this.locked = false; this.visible = true; this.hasSelectedArtwork = true; doEx("selection").each(function () { this.top += abArr[i][1]; this.left += abArr[i][0] }); doc.selection = null; i++; }) 感谢大神 calvin530126 ,从他的发帖中学到很多 |
|||