我正在尝试将InDesign页面的当前页码编号转换为标签。 这就是我正在使用的:
myLabel = myDocument.properties.name.replace(/\D+/,'').split(' ')[0].split('_')[0] + '_'
+ app.activeWindow.activePage.name +'_'+myCounter;
我遇到的问题是我从多页文档运行它,而不是使用当前页码,它使用每页中所有标签中文档的第一页编号。
以下是我认为我遇到问题的代码:
function myAddLabel(myDocument, myGraphic, myCounter, myLabelType, myLabelHeight, myLabelOffset, myStyle, mySwatch, myStoriesArray){
var myLabel;
var myLink = myGraphic.itemLink;
var myPasteFromClipboard = false;
//Create the label layer if it does not already exist.
var myLabelLayer = myDocument.layers.item("Coded Layout");
try{
myLabelLayer.name;
}
catch (myError){
myLabelLayer = myDocument.layers.add({name:"Coded Layout"});
}
//Label type defines the text that goes in the label.
switch(myLabelType){
//File name
case 0:
myLabel = myDocument.properties.name.replace(/\D+/,'').split(' ')[0].split('_')[0]+'_' + app.activeWindow.activePage.name+'_'+padNumber(myCounter);
break;
现在我相信实际的问题在于脚本的这一部分,如果我选择页面上的所有项目并运行脚本,它的工作方式我想要它工作。
function myAddLabels(myLabelType, myLabelHeight, myLabelOffset, myStyle, mySwatch){
var myDocument = app.documents.item(0);
myStoriesArray = new Array();
if (app.selection.length == 0) // If nothing is selected apply caption to all graphics in the document
{
var myConfirmation = confirm("Add captions to all images in the document?", false, "LabelGraphics.jsx" );
if (myConfirmation == true)
{
var myGraphics = myDocument.allGraphics;
}
}
else
{ // If graphics are selected, just add captions to the selected items, as long as they are rectangles(image frames)
var myConfirmation = true;
var mySelections = app.selection;
myGraphics = new Array();
for(i = 0; i < mySelections.length; i++){
if(mySelections[i] == "[object Rectangle]"){ //Check to make sure selection only includes rectangles
myGraphics.push(mySelections[i].allGraphics[0]);
}
else{
//alert("Objects other than graphics were selected!");
//Nothing happens if you don't select at least one graphic
}
}
}
此时我需要做的是创建一个循环,因为你建议运行从第一个到最后一个应用标签的所有页面。
答案 0 :(得分:1)
属性app.activeWindow.activePage.name
仅返回&#34; name&#34; (当前页面编号确实是当前(活动)InDesign窗口中可见的一页)。除非您的代码主动切换布局窗口以依次显示每个页面,否则它将始终返回相同的数字(如果当前显示的页面是第一页,那么您将得到您所描述的内容)。
要为整个文档中的每个页码分配myLabel
,您需要遍历每个文档的页面:
for (p=0; p<myDocument.pages.length; p++)
{
myLabel = myDocument.name.replace(/\D+/,'') + '_'
+ app.activeDocument.pages[p].name +'_'+myCounter;
/* .. use myLabel here .. */
}
我删除了split
命令,因为正则表达式已经删除了所有不是数字的字符,因此没有空格或下划线可以在上拆分。