Copy link to clipboard
Copied
Can't find the original post.
Sorry to the original author.
I'd like to add to the original script that automatically generates the stringer line, the spine line.
But for some reason, I can't recognize the variable “myMouthWidth” for the stringer.
//Drawmouth
myDrawLine([myY1, myX1+(myMouthWidth), myY1-(myCropMarkLength), myX1+(myMouthWidth)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY1, myXCenterA +(20/2), myY1-(myCropMarkLength), myXCenterA +(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
2 Correct answers
Hi @dublove the variable is out of scope. Roughly speaking, a variable declared in a Function 1 cannot be accessed from Function 2 unless (a) the variable is declared as a global—not good practice as a rule, or (b) the Function 2 is declared inside Function 1, or (c) the variable is passed to Function 2 as a parameter.
To fix your code, I just moved several functions up into the myDisplayDialog function like option (b) above.
There are cleaner ways to do it, but this was quick. If you are ke
...Hey @dublove I find the functions not easy to use for me, so I've refactored the code—not as much as I want to, but at least to make it easier to work with (I hope!). In this version I removed all the "my" variables—unnecessary!—and cleaned up a few things here and there, but mostly I made better functions for creating the lines and registration target marks.
And I added in a couple of lines to draw the mouth lines. See what you think.
- Mark
/* CropMarks.jsx
Draws crop and/or registrati
...
Copy link to clipboard
Copied
Full Code
//CropMarks.jsx
//An InDesign CS2 JavaScript
//
//Draws crop and/or registration marks around the selected object or objects.
//
//For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting.html
//or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
//
if (app.documents.length != 0){
if (app.selection.length > 0){
switch(app.selection[0].constructor.name){
case "Rectangle":
case "Oval":
case "Polygon":
case "GraphicLine":
case "Group":
case "TextFrame":
case "Button":
myDisplayDialog();
break;
default:
alert("选择一个页面消息再试.");
break;
}
}
else{
alert("请选择一个物体再试,呵呵.");
}
}
else{
alert("Ple请打开一个文档,选择一个物体再试,呵呵");
}
function myDisplayDialog(){
var myDialog = app.dialogs.add({name:"DrawCropMarks"});
with(myDialog){
with(dialogColumns.add()){
var myCropMarksGroup = enablingGroups.add({staticLabel:"CropMarks", checkedState:true});
with (myCropMarksGroup){
with(borderPanels.add()){
staticTexts.add({staticLabel:"Option:"});
with (dialogColumns.add()){
staticTexts.add({staticLabel:"lengths:"});
staticTexts.add({staticLabel:"offset:"});
staticTexts.add({staticLabel:"Thickness:"});
staticTexts.add({staticLabel:"Spine:"});
staticTexts.add({staticLabel:"Mouth:"});
}
with (dialogColumns.add()){
//看到的界面单位是毫米,运算前的值为点,所以要奖毫米折算为点(即,毫米值乘于2.8345)进行
var myCropMarkLengthField = measurementEditboxes.add({editValue:(2.8345*3), editUnits:MeasurementUnits.millimeters});
var myCropMarkOffsetField = measurementEditboxes.add({editValue:(2.8345*3), editUnits:MeasurementUnits.millimeters});
var myCropMarkWidthField = measurementEditboxes.add({editValue:(2.8345*0.1),editUnits:MeasurementUnits.millimeters});
//新增 书脊 勒口
var mySpineWidthField = measurementEditboxes.add({editValue:(2.8345*20),editUnits:MeasurementUnits.millimeters});
var myMouthWidthField = measurementEditboxes.add({editValue:(2.8345*83),editUnits:MeasurementUnits.millimeters});
}
}
}
var myRegMarksGroup = enablingGroups.add({staticLabel:"alignment mark", checkedState:true});
with (myRegMarksGroup){
with(borderPanels.add()){
staticTexts.add({staticLabel:"Option:"});
with (dialogColumns.add()){
staticTexts.add({staticLabel:"inner radius:"});
staticTexts.add({staticLabel:"outer radius:"});
staticTexts.add({staticLabel:"offset:"});
}
with (dialogColumns.add()){
var myRegMarkInnerRadiusField = measurementEditboxes.add({editValue:(2.8345*1), editUnits:MeasurementUnits.millimeters});
var myRegMarkOuterRadiusField = measurementEditboxes.add({editValue:(2.8345*1.5),editUnits:MeasurementUnits.millimeters});
var myRegMarkOffsetField = measurementEditboxes.add({editValue:0, editUnits:MeasurementUnits.millimeters});
}
}
}
with(borderPanels.add()){
staticTexts.add({staticLabel:"Range for drawing:"});
var myRangeButtons = radiobuttonGroups.add();
with(myRangeButtons){
radiobuttonControls.add({staticLabel:"Every object", checkedState:true});
radiobuttonControls.add({staticLabel:"whole selection"});
}
}
}
}
var myReturn = myDialog.show();
if (myReturn == true){
//Get the values from the dialog box.从对话框获取
var myDoCropMarks = myCropMarksGroup.checkedState;
var myDoRegMarks = myRegMarksGroup.checkedState;
var myCropMarkLength = myCropMarkLengthField.editValue;
var myCropMarkOffset = myCropMarkOffsetField.editValue;
var myCropMarkWidth = myCropMarkWidthField.editValue;
var myRegMarkInnerRadius = myRegMarkInnerRadiusField.editValue;
var myRegMarkOuterRadius = myRegMarkOuterRadiusField.editValue;
var myRegMarkOffset = myRegMarkOffsetField.editValue;
//书脊和勒口
var mySpineWidth = mySpineWidthField.editValue;
var myMouthWidth = myMouthWidthField.editValue;
var myRange = myRangeButtons.selectedButton;
myDialog.destroy();
//"||" is logical OR in JavaScript.
if ((myDoCropMarks != false) || (myDoRegMarks != false)){
myDrawPrintersMarks(myRange, myDoCropMarks, myDoRegMarks, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegMarkInnerRadius, myRegMarkOuterRadius, myRegMarkOffset);
}
else{
alert("No printers marks were selected.");
}
}
else{
myDialog.destroy();
}
}
function myDrawPrintersMarks(myRange, myDoCropMarks, myDoRegMarks, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegMarkInnerRadius, myRegMarkOuterRadius, myRegMarkOffset){
var myBounds, myX1, myY1, myX2, myY2, myObject;
var myDocument = app.activeDocument;
var myOldRulerOrigin = myDocument.viewPreferences.rulerOrigin;
myDocument.viewPreferences.rulerOrigin = RulerOrigin.spreadOrigin;
//Save the current measurement units.
//var oldMeasurementUnits=myDocument.viewPreferences.horizontalMeasurementUnits
//因有些函数默认计算单位为点,所以运算前要改为点,运算完成后可改回习惯毫米
var oldMeasurementUnits=myDocument.viewPreferences.horizontalMeasurementUnits
myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
//Create a layer to hold the printers marks (if it does not already exist).
var myLayer = myDocument.layers.item("myCropMarks");
try{
myLayerName = myLayer.name;
}
catch (myError){
var myLayer = myDocument.layers.add({name:"myCropMarks"});
}
//Get references to the Registration color and the None swatch.
var myRegistrationColor = myDocument.colors.item("Registration");
var myNoneSwatch = myDocument.swatches.item("None");
//Process the objects in the selection.
myBounds = myDocument.selection[0].visibleBounds;
for(var myCounter = 0; myCounter < myDocument.selection.length; myCounter ++){
myObject = myDocument.selection[myCounter];
myBounds = myObject.visibleBounds;
//Set up some initial bounding box values.
if ((myRange != 0)&&(myCounter==0)){
myX1 = myBounds[1];
myY1 = myBounds[0];
myX2 = myBounds[3];
myY2 = myBounds[2];
}
if(myRange == 0){
if (myDoCropMarks == true){
myDrawCropMarks (myBounds[1], myBounds[0], myBounds[3], myBounds[2], myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
if (myDoRegMarks == true){
myDrawRegMarks (myBounds[1], myBounds[0], myBounds[3], myBounds[2], myRegMarkOffset, myRegMarkInnerRadius, myRegMarkOuterRadius, myCropMarkWidth,myRegistrationColor, myNoneSwatch, myLayer);
}
}
else{
//Compare the bounds values to the stored bounds.
//If a given bounds value is less than (for x1 and y1) or
//greater than (for x2 and y2) the stored value,
//then replace the stored value with the bounds value.
if (myBounds[0] < myY1){
myY1 = myBounds[0];
}
if (myBounds[1] < myX1){
myX1 = myBounds[1];
}
if (myBounds[2] > myY2){
myY2 = myBounds[2];
}
if (myBounds[3] > myX2){
myX2 = myBounds[3];
}
}
}
if(myRange != 0){
if (myDoCropMarks == true){
myDrawCropMarks (myX1, myY1, myX2, myY2, myCropMarkLength, myCropMarkOffset, myCropMarkWidth,myRegistrationColor, myNoneSwatch, myLayer);
}
if (myDoRegMarks == true){
myDrawRegMarks (myX1, myY1, myX2, myY2, myRegMarkOffset, myRegMarkInnerRadius, myRegMarkOuterRadius, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
}
myDocument.viewPreferences.rulerOrigin = myOldRulerOrigin;
//Set the measurement units back to their original state.
//运算完成,将标尺单位改为习惯毫米
myDocument.viewPreferences.horizontalMeasurementUnits = oldMeasurementUnits;
myDocument.viewPreferences.verticalMeasurementUnits =oldMeasurementUnits;
}
function myDrawCropMarks (myX1, myY1, myX2, myY2, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer){
var myXCenterA = myX1 + ((myX2 - myX1)/2);
var myYCenterA = myY1 + ((myY2 - myY1)/2);
var mySpineLeft = myXCenterA -(20/2);
var mySpineRight = myXCenterA+(20/2);
//Drawspinee画书脊线 Test--------,Temporarily replace it with a constant
//myDrawLine([myY1, myXCenterA -(20/2), myY1-(myCropMarkLength), myXCenterA -(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY1, myXCenterA +(20/2), myY1-(myCropMarkLength), myXCenterA +(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY2, myXCenterA -(20/2), myY2+(myCropMarkLength), myXCenterA -(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY2, myXCenterA +(20/2), myY2+(myCropMarkLength), myXCenterA +(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Drawmouth 画勒口线
myDrawLine([myY1, myX1+(myMouthWidth), myY1-(myCropMarkLength), myX1+(myMouthWidth)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myXCenterA +(20/2), myY1-(myCropMarkLength), myXCenterA +(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Upper left crop mark pair.左上角
myDrawLine([myY1, myX1, myY1, myX1-( myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1+myCropMarkOffset, myX1, myY1+myCropMarkOffset, myX1-( myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX1, myY1-(myCropMarkLength), myX1], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX1+myCropMarkOffset, myY1-(myCropMarkLength), myX1+myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Lower left crop mark pair.左下角
myDrawLine([myY2, myX1, myY2, myX1-(myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2-myCropMarkOffset, myX1, myY2-myCropMarkOffset, myX1-(myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX1, myY2+myCropMarkLength, myX1], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX1+myCropMarkOffset, myY2+myCropMarkLength, myX1+myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Upper right crop mark pair.右上角
myDrawLine([myY1, myX2, myY1, myX2+myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1+myCropMarkOffset, myX2-myCropMarkOffset+myCropMarkOffset, myY1+myCropMarkOffset, myX2-myCropMarkOffset+myCropMarkOffset+myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX2, myY1-(myCropMarkLength), myX2], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX2-myCropMarkOffset, myY1-(myCropMarkLength), myX2-myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Lower rigth crop mark pair.右下角
myDrawLine([myY2, myX2, myY2, myX2+myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2-myCropMarkOffset, myX2, myY2-myCropMarkOffset, myX2+myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX2, myY2+myCropMarkLength, myX2], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX2-myCropMarkOffset, myY2+myCropMarkLength, myX2-myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
//画圆十字
function myDrawRegMarks (myX1, myY1, myX2, myY2, myRegMarkOffset, myRegMarkInnerRadius, myRegMarkOuterRadius, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer){
var myBounds
var myXCenter = myX1 + ((myX2 - myX1)/2);
var myYCenter = myY1 + ((myY2 - myY1)/2);
var myTargetCenter = myRegMarkOffset+(myRegMarkOuterRadius);
//Top registration target.上方圆
myBounds = [myY1-(myTargetCenter+myRegMarkInnerRadius), myXCenter-myRegMarkInnerRadius, (myY1-myTargetCenter)+myRegMarkInnerRadius, myXCenter + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY1-(myTargetCenter+myRegMarkOuterRadius), myXCenter, (myY1-myTargetCenter)+myRegMarkOuterRadius, myXCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY1-myTargetCenter, myXCenter-myRegMarkOuterRadius, myY1-myTargetCenter, myXCenter+myRegMarkOuterRadius]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Left registration target.左侧圆
myBounds = [myYCenter-myRegMarkInnerRadius, myX1-(myTargetCenter+myRegMarkInnerRadius), myYCenter+myRegMarkInnerRadius, (myX1 - myTargetCenter) + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter, myX1-(myTargetCenter+myRegMarkOuterRadius), myYCenter, myX1 -myRegMarkOffset]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter-myRegMarkOuterRadius, myX1-myTargetCenter, myYCenter+myRegMarkOuterRadius, myX1-myTargetCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Bottom registration target.下方圆
myBounds = [myY2+(myTargetCenter-myRegMarkInnerRadius), myXCenter-myRegMarkInnerRadius, myY2+ myTargetCenter+myRegMarkInnerRadius, myXCenter + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY2+myRegMarkOffset, myXCenter, myY2+myTargetCenter+myRegMarkOuterRadius, myXCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY2+myTargetCenter, myXCenter-myRegMarkOuterRadius, myY2 + myTargetCenter, myXCenter+myRegMarkOuterRadius]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Right registration target.右侧圆
myBounds = [myYCenter-myRegMarkInnerRadius, myX2+(myTargetCenter-myRegMarkInnerRadius), myYCenter+myRegMarkInnerRadius, myX2 + myTargetCenter + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter, myX2+myRegMarkOffset, myYCenter, myX2+myTargetCenter+myRegMarkOuterRadius]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter-myRegMarkOuterRadius, myX2+myTargetCenter, myYCenter+myRegMarkOuterRadius, myX2+myTargetCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
function myDrawLine(myBounds, myStrokeWeight, myRegistrationColor, myNoneSwatch, myLayer){
app.activeWindow.activeSpread.graphicLines.add(myLayer, undefined, undefined,{strokeWeight:myStrokeWeight, fillColor:myNoneSwatch, strokeColor:myRegistrationColor, geometricBounds:myBounds})
}
function myDrawTarget(myBounds, myStrokeWeight, myRegistrationColor, myNoneSwatch, myLayer){
app.activeWindow.activeSpread.ovals.add(myLayer, undefined, undefined, {strokeWeight:myStrokeWeight, fillColor:myNoneSwatch, strokeColor:myRegistrationColor, geometricBounds:myBounds})
}
Copy link to clipboard
Copied
Hi @dublove the variable is out of scope. Roughly speaking, a variable declared in a Function 1 cannot be accessed from Function 2 unless (a) the variable is declared as a global—not good practice as a rule, or (b) the Function 2 is declared inside Function 1, or (c) the variable is passed to Function 2 as a parameter.
To fix your code, I just moved several functions up into the myDisplayDialog function like option (b) above.
There are cleaner ways to do it, but this was quick. If you are keen to learn my preferred approach, see my other scripts where I use a `settings` variable and a `ui` function. This structure allows me to easily run the script without the UI, for example.
- Mark
/* CropMarks.jsx
Draws crop and/or registration marks around the selected object or objects.
For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting.html
or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
Modified by dublove
*/
function main() {
if (app.documents.length === 0)
return alert("Ple请打开一个文档,选择一个物体再试,呵呵");
if (app.selection.length == 0)
return alert("请选择一个物体再试,呵呵.");
switch (app.selection[0].constructor.name) {
case "Rectangle":
case "Oval":
case "Polygon":
case "GraphicLine":
case "Group":
case "TextFrame":
case "Button":
myDisplayDialog();
break;
default:
alert("选择一个页面消息再试.");
break;
}
function myDisplayDialog() {
var myDialog = app.dialogs.add({ name: "DrawCropMarks" });
with (myDialog) {
with (dialogColumns.add()) {
var myCropMarksGroup = enablingGroups.add({ staticLabel: "CropMarks", checkedState: true });
with (myCropMarksGroup) {
with (borderPanels.add()) {
staticTexts.add({ staticLabel: "Option:" });
with (dialogColumns.add()) {
staticTexts.add({ staticLabel: "lengths:" });
staticTexts.add({ staticLabel: "offset:" });
staticTexts.add({ staticLabel: "Thickness:" });
staticTexts.add({ staticLabel: "Spine:" });
staticTexts.add({ staticLabel: "Mouth:" });
}
with (dialogColumns.add()) {
//看到的界面单位是毫米,运算前的值为点,所以要奖毫米折算为点(即,毫米值乘于2.8345)进行
var myCropMarkLengthField = measurementEditboxes.add({ editValue: (2.8345 * 3), editUnits: MeasurementUnits.millimeters });
var myCropMarkOffsetField = measurementEditboxes.add({ editValue: (2.8345 * 3), editUnits: MeasurementUnits.millimeters });
var myCropMarkWidthField = measurementEditboxes.add({ editValue: (2.8345 * 0.1), editUnits: MeasurementUnits.millimeters });
//新增 书脊 勒口
var mySpineWidthField = measurementEditboxes.add({ editValue: (2.8345 * 20), editUnits: MeasurementUnits.millimeters });
var myMouthWidthField = measurementEditboxes.add({ editValue: (2.8345 * 83), editUnits: MeasurementUnits.millimeters });
}
}
}
var myRegMarksGroup = enablingGroups.add({ staticLabel: "alignment mark", checkedState: true });
with (myRegMarksGroup) {
with (borderPanels.add()) {
staticTexts.add({ staticLabel: "Option:" });
with (dialogColumns.add()) {
staticTexts.add({ staticLabel: "inner radius:" });
staticTexts.add({ staticLabel: "outer radius:" });
staticTexts.add({ staticLabel: "offset:" });
}
with (dialogColumns.add()) {
var myRegMarkInnerRadiusField = measurementEditboxes.add({ editValue: (2.8345 * 1), editUnits: MeasurementUnits.millimeters });
var myRegMarkOuterRadiusField = measurementEditboxes.add({ editValue: (2.8345 * 1.5), editUnits: MeasurementUnits.millimeters });
var myRegMarkOffsetField = measurementEditboxes.add({ editValue: 0, editUnits: MeasurementUnits.millimeters });
}
}
}
with (borderPanels.add()) {
staticTexts.add({ staticLabel: "Range for drawing:" });
var myRangeButtons = radiobuttonGroups.add();
with (myRangeButtons) {
radiobuttonControls.add({ staticLabel: "Every object", checkedState: true });
radiobuttonControls.add({ staticLabel: "whole selection" });
}
}
}
}
var myReturn = myDialog.show();
//Get the values from the dialog box.从对话框获取
var myDoCropMarks = myCropMarksGroup.checkedState;
var myDoRegMarks = myRegMarksGroup.checkedState;
var myCropMarkLength = myCropMarkLengthField.editValue;
var myCropMarkOffset = myCropMarkOffsetField.editValue;
var myCropMarkWidth = myCropMarkWidthField.editValue;
var myRegMarkInnerRadius = myRegMarkInnerRadiusField.editValue;
var myRegMarkOuterRadius = myRegMarkOuterRadiusField.editValue;
var myRegMarkOffset = myRegMarkOffsetField.editValue;
//书脊和勒口
var mySpineWidth = mySpineWidthField.editValue;
var myMouthWidth = myMouthWidthField.editValue;
var myRange = myRangeButtons.selectedButton;
myDialog.destroy();
if (!myReturn)
return;
//"||" is logical OR in JavaScript.
if (!myDoCropMarks && !myDoRegMarks)
return alert("No printers marks were selected.");
myDrawPrintersMarks(myRange, myDoCropMarks, myDoRegMarks, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegMarkInnerRadius, myRegMarkOuterRadius, myRegMarkOffset);
// dublove, keep all these functions in the same scope (inside the myDisplayDialog function):
function myDrawPrintersMarks(myRange, myDoCropMarks, myDoRegMarks, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegMarkInnerRadius, myRegMarkOuterRadius, myRegMarkOffset) {
var myBounds, myX1, myY1, myX2, myY2, myObject;
var myDocument = app.activeDocument;
var myOldRulerOrigin = myDocument.viewPreferences.rulerOrigin;
myDocument.viewPreferences.rulerOrigin = RulerOrigin.spreadOrigin;
//Save the current measurement units.
//var oldMeasurementUnits=myDocument.viewPreferences.horizontalMeasurementUnits
//因有些函数默认计算单位为点,所以运算前要改为点,运算完成后可改回习惯毫米
var oldMeasurementUnits = myDocument.viewPreferences.horizontalMeasurementUnits
myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
//Create a layer to hold the printers marks (if it does not already exist).
var myLayer = myDocument.layers.item("myCropMarks");
try {
myLayerName = myLayer.name;
}
catch (myError) {
var myLayer = myDocument.layers.add({ name: "myCropMarks" });
}
//Get references to the Registration color and the None swatch.
var myRegistrationColor = myDocument.colors.item("Registration");
var myNoneSwatch = myDocument.swatches.item("None");
//Process the objects in the selection.
myBounds = myDocument.selection[0].visibleBounds;
for (var myCounter = 0; myCounter < myDocument.selection.length; myCounter++) {
myObject = myDocument.selection[myCounter];
myBounds = myObject.visibleBounds;
//Set up some initial bounding box values.
if ((myRange != 0) && (myCounter == 0)) {
myX1 = myBounds[1];
myY1 = myBounds[0];
myX2 = myBounds[3];
myY2 = myBounds[2];
}
if (myRange == 0) {
if (myDoCropMarks == true) {
myDrawCropMarks(myBounds[1], myBounds[0], myBounds[3], myBounds[2], myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
if (myDoRegMarks == true) {
myDrawRegMarks(myBounds[1], myBounds[0], myBounds[3], myBounds[2], myRegMarkOffset, myRegMarkInnerRadius, myRegMarkOuterRadius, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
}
else {
//Compare the bounds values to the stored bounds.
//If a given bounds value is less than (for x1 and y1) or
//greater than (for x2 and y2) the stored value,
//then replace the stored value with the bounds value.
if (myBounds[0] < myY1) {
myY1 = myBounds[0];
}
if (myBounds[1] < myX1) {
myX1 = myBounds[1];
}
if (myBounds[2] > myY2) {
myY2 = myBounds[2];
}
if (myBounds[3] > myX2) {
myX2 = myBounds[3];
}
}
}
if (myRange != 0) {
if (myDoCropMarks == true) {
myDrawCropMarks(myX1, myY1, myX2, myY2, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
if (myDoRegMarks == true) {
myDrawRegMarks(myX1, myY1, myX2, myY2, myRegMarkOffset, myRegMarkInnerRadius, myRegMarkOuterRadius, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
}
myDocument.viewPreferences.rulerOrigin = myOldRulerOrigin;
//Set the measurement units back to their original state.
//运算完成,将标尺单位改为习惯毫米
myDocument.viewPreferences.horizontalMeasurementUnits = oldMeasurementUnits;
myDocument.viewPreferences.verticalMeasurementUnits = oldMeasurementUnits;
}
function myDrawCropMarks(myX1, myY1, myX2, myY2, myCropMarkLength, myCropMarkOffset, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer) {
var myXCenterA = myX1 + ((myX2 - myX1) / 2);
var myYCenterA = myY1 + ((myY2 - myY1) / 2);
var mySpineLeft = myXCenterA - (20 / 2);
var mySpineRight = myXCenterA + (20 / 2);
//Drawspinee画书脊线 Test--------,Temporarily replace it with a constant
//myDrawLine([myY1, myXCenterA -(20/2), myY1-(myCropMarkLength), myXCenterA -(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY1, myXCenterA +(20/2), myY1-(myCropMarkLength), myXCenterA +(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY2, myXCenterA -(20/2), myY2+(myCropMarkLength), myXCenterA -(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//myDrawLine([myY2, myXCenterA +(20/2), myY2+(myCropMarkLength), myXCenterA +(20/2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Drawmouth 画勒口线
myDrawLine([myY1, myX1 + (myMouthWidth), myY1 - (myCropMarkLength), myX1 + (myMouthWidth)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myXCenterA + (20 / 2), myY1 - (myCropMarkLength), myXCenterA + (20 / 2)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Upper left crop mark pair.左上角
myDrawLine([myY1, myX1, myY1, myX1 - (myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1 + myCropMarkOffset, myX1, myY1 + myCropMarkOffset, myX1 - (myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX1, myY1 - (myCropMarkLength), myX1], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX1 + myCropMarkOffset, myY1 - (myCropMarkLength), myX1 + myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Lower left crop mark pair.左下角
myDrawLine([myY2, myX1, myY2, myX1 - (myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2 - myCropMarkOffset, myX1, myY2 - myCropMarkOffset, myX1 - (myCropMarkLength)], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX1, myY2 + myCropMarkLength, myX1], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX1 + myCropMarkOffset, myY2 + myCropMarkLength, myX1 + myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Upper right crop mark pair.右上角
myDrawLine([myY1, myX2, myY1, myX2 + myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1 + myCropMarkOffset, myX2 - myCropMarkOffset + myCropMarkOffset, myY1 + myCropMarkOffset, myX2 - myCropMarkOffset + myCropMarkOffset + myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX2, myY1 - (myCropMarkLength), myX2], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY1, myX2 - myCropMarkOffset, myY1 - (myCropMarkLength), myX2 - myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Lower rigth crop mark pair.右下角
myDrawLine([myY2, myX2, myY2, myX2 + myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2 - myCropMarkOffset, myX2, myY2 - myCropMarkOffset, myX2 + myCropMarkLength], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX2, myY2 + myCropMarkLength, myX2], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myDrawLine([myY2, myX2 - myCropMarkOffset, myY2 + myCropMarkLength, myX2 - myCropMarkOffset], myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
//画圆十字
function myDrawRegMarks(myX1, myY1, myX2, myY2, myRegMarkOffset, myRegMarkInnerRadius, myRegMarkOuterRadius, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer) {
var myBounds
var myXCenter = myX1 + ((myX2 - myX1) / 2);
var myYCenter = myY1 + ((myY2 - myY1) / 2);
var myTargetCenter = myRegMarkOffset + (myRegMarkOuterRadius);
//Top registration target.上方圆
myBounds = [myY1 - (myTargetCenter + myRegMarkInnerRadius), myXCenter - myRegMarkInnerRadius, (myY1 - myTargetCenter) + myRegMarkInnerRadius, myXCenter + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY1 - (myTargetCenter + myRegMarkOuterRadius), myXCenter, (myY1 - myTargetCenter) + myRegMarkOuterRadius, myXCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY1 - myTargetCenter, myXCenter - myRegMarkOuterRadius, myY1 - myTargetCenter, myXCenter + myRegMarkOuterRadius]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Left registration target.左侧圆
myBounds = [myYCenter - myRegMarkInnerRadius, myX1 - (myTargetCenter + myRegMarkInnerRadius), myYCenter + myRegMarkInnerRadius, (myX1 - myTargetCenter) + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter, myX1 - (myTargetCenter + myRegMarkOuterRadius), myYCenter, myX1 - myRegMarkOffset]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter - myRegMarkOuterRadius, myX1 - myTargetCenter, myYCenter + myRegMarkOuterRadius, myX1 - myTargetCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Bottom registration target.下方圆
myBounds = [myY2 + (myTargetCenter - myRegMarkInnerRadius), myXCenter - myRegMarkInnerRadius, myY2 + myTargetCenter + myRegMarkInnerRadius, myXCenter + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY2 + myRegMarkOffset, myXCenter, myY2 + myTargetCenter + myRegMarkOuterRadius, myXCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myY2 + myTargetCenter, myXCenter - myRegMarkOuterRadius, myY2 + myTargetCenter, myXCenter + myRegMarkOuterRadius]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
//Right registration target.右侧圆
myBounds = [myYCenter - myRegMarkInnerRadius, myX2 + (myTargetCenter - myRegMarkInnerRadius), myYCenter + myRegMarkInnerRadius, myX2 + myTargetCenter + myRegMarkInnerRadius];
myDrawTarget(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter, myX2 + myRegMarkOffset, myYCenter, myX2 + myTargetCenter + myRegMarkOuterRadius]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
myBounds = [myYCenter - myRegMarkOuterRadius, myX2 + myTargetCenter, myYCenter + myRegMarkOuterRadius, myX2 + myTargetCenter]
myDrawLine(myBounds, myCropMarkWidth, myRegistrationColor, myNoneSwatch, myLayer);
}
function myDrawLine(myBounds, myStrokeWeight, myRegistrationColor, myNoneSwatch, myLayer) {
app.activeWindow.activeSpread.graphicLines.add(myLayer, undefined, undefined, { strokeWeight: myStrokeWeight, fillColor: myNoneSwatch, strokeColor: myRegistrationColor, geometricBounds: myBounds })
}
function myDrawTarget(myBounds, myStrokeWeight, myRegistrationColor, myNoneSwatch, myLayer) {
app.activeWindow.activeSpread.ovals.add(myLayer, undefined, undefined, { strokeWeight: myStrokeWeight, fillColor: myNoneSwatch, strokeColor: myRegistrationColor, geometricBounds: myBounds })
}
}
};
app.doScript(main, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, 'Add Cropmarks');
Edit 2025-03-28: typo (removed erroneous reference to `settings`)
Copy link to clipboard
Copied
Hi m1b.
Thank you very much.
It says settings is undefined, so I did it this way
var settings;
myDisplayDialog(settings); var settings.
I want to draw a reference line at (myX1 + myMouthWidth), what should I write?
Copy link to clipboard
Copied
Hey @dublove I find the functions not easy to use for me, so I've refactored the code—not as much as I want to, but at least to make it easier to work with (I hope!). In this version I removed all the "my" variables—unnecessary!—and cleaned up a few things here and there, but mostly I made better functions for creating the lines and registration target marks.
And I added in a couple of lines to draw the mouth lines. See what you think.
- Mark
/* CropMarks.jsx
Draws crop and/or registration marks around the selected object or objects.
For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting.html
or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
Based on CropMarks.jsx
Modified by dublove
Modified 2025-03-28 by m1b
*/
function main() {
app.scriptPreferences.measurementUnit = MeasurementUnits.POINTS;
var mm = 2.83465;
if (app.documents.length === 0)
return alert("Ple请打开一个文档,选择一个物体再试,呵呵");
if (app.selection.length == 0)
return alert("请选择一个物体再试,呵呵.");
if (!app.selection[0].geometricBounds)
return alert("选择一个页面消息再试.");
var doc = app.activeDocument;
// create dialog
var dialog = app.dialogs.add({ name: "DrawCropMarks" });
with (dialog) {
with (dialogColumns.add()) {
var cropMarksGroup = enablingGroups.add({ staticLabel: "CropMarks", checkedState: true });
with (cropMarksGroup) {
with (borderPanels.add()) {
staticTexts.add({ staticLabel: "Option:" });
with (dialogColumns.add()) {
staticTexts.add({ staticLabel: "lengths:" });
staticTexts.add({ staticLabel: "offset:" });
staticTexts.add({ staticLabel: "Thickness:" });
staticTexts.add({ staticLabel: "Spine:" });
staticTexts.add({ staticLabel: "Mouth:" });
}
with (dialogColumns.add()) {
//看到的界面单位是毫米,运算前的值为点,所以要奖毫米折算为点(即,毫米值乘于2.8345)进行
var cropMarkLengthField = measurementEditboxes.add({ editValue: (3 * mm), editUnits: MeasurementUnits.millimeters });
var cropMarkOffsetField = measurementEditboxes.add({ editValue: (3 * mm), editUnits: MeasurementUnits.millimeters });
var cropMarkWidthField = measurementEditboxes.add({ editValue: (0.1 * mm), editUnits: MeasurementUnits.millimeters });
//新增 书脊 勒口
var spineWidthField = measurementEditboxes.add({ editValue: (20 * mm), editUnits: MeasurementUnits.millimeters });
var mouthWidthField = measurementEditboxes.add({ editValue: (83 * mm), editUnits: MeasurementUnits.millimeters });
}
}
}
var regMarksGroup = enablingGroups.add({ staticLabel: "alignment mark", checkedState: true });
with (regMarksGroup) {
with (borderPanels.add()) {
staticTexts.add({ staticLabel: "Option:" });
with (dialogColumns.add()) {
staticTexts.add({ staticLabel: "inner radius:" });
staticTexts.add({ staticLabel: "outer radius:" });
staticTexts.add({ staticLabel: "offset:" });
}
with (dialogColumns.add()) {
var regMarkInnerRadiusField = measurementEditboxes.add({ editValue: (2.8345 * 1), editUnits: MeasurementUnits.millimeters });
var regMarkOuterRadiusField = measurementEditboxes.add({ editValue: (2.8345 * 1.5), editUnits: MeasurementUnits.millimeters });
var regMarkOffsetField = measurementEditboxes.add({ editValue: 0, editUnits: MeasurementUnits.millimeters });
}
}
}
with (borderPanels.add()) {
staticTexts.add({ staticLabel: "Range for drawing:" });
var rangeButtons = radiobuttonGroups.add();
with (rangeButtons) {
radiobuttonControls.add({ staticLabel: "Every object", checkedState: true });
radiobuttonControls.add({ staticLabel: "whole selection" });
}
}
}
}
// show the dialog
var result = dialog.show();
//Get the values from the dialog box.从对话框获取
var doCropMarks = cropMarksGroup.checkedState;
var doRegMarks = regMarksGroup.checkedState;
var cropMarkLength = cropMarkLengthField.editValue;
var cropMarkOffset = cropMarkOffsetField.editValue;
var cropMarkWidth = cropMarkWidthField.editValue;
var regMarkInnerRadius = regMarkInnerRadiusField.editValue;
var regMarkOuterRadius = regMarkOuterRadiusField.editValue;
var regMarkOffset = regMarkOffsetField.editValue;
//书脊和勒口
var spineWidth = spineWidthField.editValue;
var mouthWidth = mouthWidthField.editValue;
var range = rangeButtons.selectedButton;
dialog.destroy();
if (!result)
// user cancelled
return;
//"||" is logical OR in JavaScript.
if (!doCropMarks && !doRegMarks)
return alert("No printers marks were selected.");
//Create a layer to hold the printers marks (if it does not already exist).
var layer = doc.layers.item("cropMarks");
if (!layer.isValid)
layer = doc.layers.add({ name: "cropMarks" });
//Get references to the Registration color and the None swatch.
var registrationColor = doc.colors.item("Registration");
var noneSwatch = doc.swatches.item("None");
// these are the bounds we will add cropmarks to
var allBounds = [];
// get bounds of selection
var items = doc.selection;
for (var i = 0; i < items.length; i++)
allBounds.push(items[i].visibleBounds);
if (range === 1)
// combine all the item bounds into one bound
allBounds = [combineBounds(allBounds)];
// loop over the bounds and draw the marks
for (var i = 0; i < allBounds.length; i++) {
var bounds = allBounds[i];
if (doCropMarks == true) {
drawCropMarks(bounds, doc);
}
if (doRegMarks == true) {
drawRegMarks(bounds, doc);
}
}
function drawCropMarks(bounds, group) {
var x1 = bounds[1],
y1 = bounds[0],
x2 = bounds[3],
y2 = bounds[2];
var props = {
filled: false,
stroked: true,
strokeColor: registrationColor,
strokeWeight: cropMarkWidth,
};
//Create a group for the marks (we need)
var tmp1 = doc.graphicLines.add();
var tmp2 = doc.graphicLines.add();
var group = doc.layoutWindows[0].activePage.groups.add([tmp1, tmp2], layer);
// dublove, this is where you are currently working
var xCenterA = x1 + ((x2 - x1) / 2);
var yCenterA = y1 + ((y2 - y1) / 2);
var spineLeft = xCenterA - (20 / 2);
var spineRight = xCenterA + (20 / 2);
//Drawmouth 画勒口线
drawGraphicLine([x1 + mouthWidth, y1], [x1 + mouthWidth, y1 - cropMarkLength], group, props);
drawGraphicLine([x1 + mouthWidth, y2], [x1 + mouthWidth, y2 + cropMarkLength], group, props);
//Upper left crop mark pair.左上角
drawGraphicLine([x1, y1], [x1 - cropMarkLength, y1], group, props);
drawGraphicLine([x1, y1 + cropMarkOffset], [x1 - cropMarkLength, y1 + cropMarkOffset], group, props);
drawGraphicLine([x1, y1], [x1, y1 - cropMarkLength], group, props);
drawGraphicLine([x1 + cropMarkOffset, y1], [x1 + cropMarkOffset, y1 - cropMarkLength], group, props);
//Lower left crop mark pair.左下角
drawGraphicLine([x2, y1], [x2 + cropMarkLength, y1], group, props);
drawGraphicLine([x2 - cropMarkOffset + cropMarkOffset, y1 + cropMarkOffset], [x2 - cropMarkOffset + cropMarkOffset + cropMarkLength, y1 + cropMarkOffset], group, props);
drawGraphicLine([x2, y1], [x2, y1 - cropMarkLength], group, props);
drawGraphicLine([x2 - cropMarkOffset, y1], [x2 - cropMarkOffset, y1 - cropMarkLength], group, props);
//Upper right crop mark pair.右上角
drawGraphicLine([x1, y2], [x1 - cropMarkLength, y2], group, props);
drawGraphicLine([x1, y2 - cropMarkOffset], [x1 - cropMarkLength, y2 - cropMarkOffset], group, props);
drawGraphicLine([x1, y2], [x1, y2 + cropMarkLength], group, props);
drawGraphicLine([x1 + cropMarkOffset, y2], [x1 + cropMarkOffset, y2 + cropMarkLength], group, props);
//Lower right crop mark pair.右下角
drawGraphicLine([x2, y2], [x2 + cropMarkLength, y2], group, props);
drawGraphicLine([x2, y2 - cropMarkOffset], [x2 + cropMarkLength, y2 - cropMarkOffset], group, props);
drawGraphicLine([x2, y2], [x2, y2 + cropMarkLength], group, props);
drawGraphicLine([x2 - cropMarkOffset, y2], [x2 - cropMarkOffset, y2 + cropMarkLength], group, props);
// cleanup the temporary items in the group
tmp2.remove();
tmp1.remove();
return group;
};
//画圆十字
function drawRegMarks(bounds, container) {
var x1 = bounds[1],
y1 = bounds[0],
x2 = bounds[3],
y2 = bounds[2];
var cx = x1 + ((x2 - x1) / 2);
var cy = y1 + ((y2 - y1) / 2);
var offset = regMarkOffset + regMarkOuterRadius;
var props = {
filled: false,
stroked: true,
strokeColor: registrationColor,
strokeWeight: cropMarkWidth,
};
var registrationTargetItems = [
//Top registration target.上方圆
drawRegistrationTarget([cx, y1 - offset], regMarkInnerRadius, regMarkOuterRadius, container, props),
//Bottom registration target.下方圆
drawRegistrationTarget([cx, y2 + offset], regMarkInnerRadius, regMarkOuterRadius, container, props),
//Left registration target.左侧圆
drawRegistrationTarget([x1 - offset, cy], regMarkInnerRadius, regMarkOuterRadius, container, props),
//Right registration target.右侧圆
drawRegistrationTarget([x2 + offset, cy], regMarkInnerRadius, regMarkOuterRadius, container, props),
];
var group = container.groups.add(registrationTargetItems);
group.itemLayer = layer;
return group;
};
};
app.doScript(main, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, 'Add Cropmarks');
/**
* Returns a registration target symbol.
* @author m1b
* @version 2025-03-28
* @param {Array<Number>} center - the center of the target [x, y].
* @param {Number} radius - the radius of the circle, in points.
* @param {Number} lineSize - the length of the lines from the center, in points.
* @param {Document|Page|Spread} container - the place to draw the line
* @param {Object} [props] - properties to apply to the new line (default: no properties)
* @returns {Group}
*/
function drawRegistrationTarget(center, circleRadius, lineSize, container, props) {
props = props || {};
var parts = [],
x = center[0],
y = center[1];
// lines
parts.push(drawGraphicLine([x - lineSize, y], [x + lineSize, y], container, props))
parts.push(drawGraphicLine([x, y - lineSize], [x, y + lineSize], container, props))
// circle
parts.push(drawCircle(center, circleRadius, container, props))
// return group
return container.groups.add(parts);
};
/**
* Returns a new circle.
* @author m1b
* @version 2025-03-28
* @param {Array<Number>} center - the center of the circle [x, y].
* @param {Number} radius - the radius of the circle, in points.
* @param {Document|Page|Spread} container - the place to draw the line
* @param {Object} [props] - properties to apply to the new line (default: no properties)
* @returns {Oval}
*/
function drawCircle(center, radius, container, props) {
var circle = container.ovals.add();
circle.geometricBounds = [center[1] - radius, center[0] - radius, center[1] + radius, center[0] + radius];
circle.properties = props || {};
return circle;
};
/**
* Returns a new graphic line.
* @author m1b
* @version 2025-03-28
* @param {Array<Number>} p0 - the first point [x, y].
* @param {Array<Number>} p1 - the second point [x, y].
* @param {Document|Page|Spread} container - the place to draw the line
* @param {Object} [props] - properties to apply to the new line (default: no properties)
* @returns {GraphicLine}
*/
function drawGraphicLine(p0, p1, container, props) {
var newLine = container.graphicLines.add();
newLine.paths.item(0).pathPoints.item(0).anchor = p0;
newLine.paths.item(0).pathPoints.item(1).anchor = p1;
newLine.properties = props || {};
return newLine;
};
/**
* Returns the combined bounds of all bounds supplied.
* Works with Illustrator or Indesign bounds.
* @author m1b
* @version 2024-03-09
* @param {Array<bounds>} boundsArray - an array of bounds [L, T, R, B] or [T, L , B, R].
* @returns {bounds?} - the combined bounds.
*/
function combineBounds(boundsArray) {
var combinedBounds = boundsArray[0].slice(),
comparator;
if (/indesign/i.test(app.name))
comparator = [Math.min, Math.min, Math.max, Math.max];
else if (/illustrator/i.test(app.name))
comparator = [Math.min, Math.max, Math.max, Math.min];
// iterate through the rest of the bounds
for (var i = 1; i < boundsArray.length; i++) {
var bounds = boundsArray[i];
combinedBounds = [
comparator[0](combinedBounds[0], bounds[0]),
comparator[1](combinedBounds[1], bounds[1]),
comparator[2](combinedBounds[2], bounds[2]),
comparator[3](combinedBounds[3], bounds[3]),
];
}
return combinedBounds;
};
Copy link to clipboard
Copied
Feeling a little faster?
I'm fine with both.
How to draw a reference line at "x1+mouthWidth"?
At the end of the run, can you change the stroke unit to mm, more accustomed to mm.
Copy link to clipboard
Copied
I already drew it in my new code:
drawGraphicLine([x1 + mouthWidth, y1], [x1 + mouthWidth, y1 - cropMarkLength], group, props);
drawGraphicLine([x1 + mouthWidth, y2], [x1 + mouthWidth, y2 + cropMarkLength], group, props);
This is easier to use: just provide two [x, y] points for the two points of the line.
Note that Indesign's geometric or visible bounds (or page bounds) are all [top, left, bottom, right] which can be confusing.
- Mark
Copy link to clipboard
Copied
I've already modified the 3mm Marks, I was asking about the reference line.
the blue line
Copy link to clipboard
Copied
Is it a Guide?
app.activeDocument.layoutWindows[0].activeSpread.guides.add(layer, {
orientation: HorizontalOrVertical.VERTICAL,
location: x1 + mouthWidth,
});
or a GraphicLine? If so then use the drawGraphicLine function. I wrote documentation for it.
- Mark
Copy link to clipboard
Copied
Hi m1b.
Thank you very much.
Yes, it's Guid.
I'm sorry. I just remembered.
God “reference line” is such a failed translation.
Copy link to clipboard
Copied
Ha, no problem! You are learning English very well and much better than I can speak other languages. You never give up!

