论坛帮助 |
社区圈子 |
日历事件 |
2023-02-23, 21:55 | 只看该作者 #2 | ||
|
|||
正式会员
等级: 六袋长老
|
// 获取 AI文档名称 var docRef = activeDocument; var str = docRef.name; str = removeSuffixName(str)+ " " ; // alert("本脚本建立一个文本:\n" + str); // 文档中建立一个新文本 // var textRef = docRef.textFrames.add(); // textRef.top = 0; // textRef.left = 0; // textRef.contents = str; var myFont = textFonts.getByName("SimHei"); var myFontSize = 8; function filenameDate() { var textRef = docRef.textFrames.add(); // 建立文本 textRef.contents = str; // 填充文本字符串: AI文档名称 + 时间 textRef.textRange.characterAttributes.size = myFontSize; // 设置字体尺寸 textRef.textRange.characterAttributes.textFont = myFont; // 设置字体名称 textRef.textRange.characterAttributes.fillColor = docRef.swatches[1].color; // 设置拼版色 textRef.top = textRef.top-569.6; // 画板底向上偏移 textRef.left = textRef.width-130 ; // 画板x中,偏移文本宽和间隔宽 } filenameDate(); function removeSuffixName(fileName) {//获取文件名称(去掉扩展名) return fileName.substring(0, fileName.lastIndexOf("."))}; |
||