论坛帮助 |
社区圈子 |
日历事件 |
2015-01-27, 14:22 | #1 | |||
|
||||
正式会员
等级: 六袋长老
|
不知哪位脚 本高手能提供帮助,不胜感激!! |
|||
右列会员因为此帖价值甚高向 Rich 表示感谢: |
stonetan2000 (2017-02-04)
|
2015-01-27, 14:41 | 只看该作者 #2 | ||
|
|||
见习会员
等级: 四袋长老
|
t = doc.textFrames.add(); t.contents = doc.name; //文件名 t.contents = doc.path.fullName; //路径名 |
||
右列 2 位会员因为此帖价值甚高向 江门蒋基雄 表示感谢: |
Rich (2015-01-27),
stonetan2000 (2017-02-04)
|
2015-01-27, 14:44 | 只看该作者 #3 | ||
|
|||
见习会员
等级: 四袋长老
|
|
||
右列会员因为此帖价值甚高向 江门蒋基雄 表示感谢: |
Rich (2015-01-27)
|
2015-01-27, 14:49 | 只看该作者 #4 | ||
|
|||
见习会员
等级: 四袋长老
|
for (i=0;i<doc.textFrames.length);i==){ if (doc.textFrames[i].contents=="文件名在这里填写"){ doc.textFrames[i]=doc.name; } if (doc.textFrames[i].contents=="路径名在这里填写"){ doc.textFrames[i]=doc.path.fullName; } } 以上有错,以下是修正 已经测试 doc=activeDocument; //在当前文件操作 for (i=0;i<doc.textFrames.length;i++){ if (doc.textFrames[i].contents=="文件名在这里填写"){ doc.textFrames[i].contents=doc.name; } if (doc.textFrames[i].contents=="路径名在这里填写"){ doc.textFrames[i].contents=doc.path.fullName; } } 此帖于 2015-01-27 15:12 被 江门蒋基雄 编辑. 原因: 修正代码 |
||
右列会员因为此帖价值甚高向 江门蒋基雄 表示感谢: |
Rich (2015-01-27)
|
2015-01-27, 15:10 | 只看该作者 #7 | ||
|
|||
见习会员
等级: 四袋长老
|
以下修正,已经测试 doc=activeDocument; //在当前文件操作 for (i=0;i<doc.textFrames.length;i++){ if (doc.textFrames[i].contents=="文件名在这里填写"){ doc.textFrames[i].contents=doc.name; } if (doc.textFrames[i].contents=="路径名在这里填写"){ doc.textFrames[i].contents=doc.path.fullName; } } |
||