论坛帮助 |
社区圈子 |
日历事件 |
2024-06-14, 08:30 | #1 | ||
|
|||
正式会员
等级: 六袋长老
|
for(var i=doc.textFrames.length-1; i>=0;i--){ doc.textFrames[i].createOutline(); } |
||
回复时引用此帖 |
右列会员因为此帖价值甚高向 xiaohaiwu 表示感谢: |
andyk00000 (2024-06-14)
|
2024-06-14, 10:49 | #2 | ||
|
|||
正式会员
等级: 六袋长老
|
var tl=doc.textFrames.length-1; for(var i=tl; i>=0;i--){ doc.textFrames[i].createOutline(); } 转曲之后文档文本长度发生变化, 像上面这样必须使自减。 var doc = app.activeDocument; for(var i=doc.textFrames.length-1; i>=0;i--){ doc.textFrames[i].createOutline(); } 上面这个长度总是在变化,增和减没关系,只是习惯而已. |
||
回复时引用此帖 |