• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

crop marks around objects

Explorer ,
Dec 02, 2020 Dec 02, 2020

Copy link to clipboard

Copied

hi

i search for script that do'es crop marks around object like this:

Screen Shot 2020-12-02 at 18.55.50.png

TOPICS
Scripting

Views

620

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Advocate ,
Dec 02, 2020 Dec 02, 2020

Copy link to clipboard

Copied

...and object means? Smartobjects? Shapes? Paths? Pixel layers?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 02, 2020 Dec 02, 2020

Copy link to clipboard

Copied

only rectangles

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

Did you know that illustrator has a function for crop marks? Do you really need cross marks?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

Yes. I need cross marks

נשלח מה-iPhone שלי

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

i didn't sucsses to do it.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

It's pretty easy to make an action to distribute a symbol of this mark in relation to the Artboard. If needed the action can even be configured to make the symbols objects and outlined.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

 

@Tom Winkelmann  wrote:                                                                                                                                                          

"You can use this script twice."

 

One time with the right settings should be enough.

 

MakeCropMarksAI_v1_4_14.png

 

@Tom Winkelmann - your link does work for me

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

@pixxxelschubser

Stimmt. Da hätte ich selbst drauf kommen können. 🙂

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

Ja, das hättest du.

😄

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

// select path
var b = app.selection[0].geometricBounds, 
items = app.activeDocument.pathItems;
var draw = function (x, y) {
  var l1 = items.add(), p1 = [[x-10, y], [x+10, y]];
  l1.setEntirePath(p1);
  l1.strokeWidth = 1;
  var l2 = items.add(), p2 = [[x, y-10], [x, y+10]];
  l2.setEntirePath(p2);
  l2.strokeWidth = 1;
}
draw(b[0], b[1]);
draw(b[2], b[1]);
draw(b[0], b[3]);
draw(b[2], b[3]);

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

thanks!!!

how can i set it to mm?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Dec 03, 2020 Dec 03, 2020

Copy link to clipboard

Copied

LATEST

Set what to mm?  Stroke weight?  If so, change the 1 in front of strokeWidth (lines 7 and 10) to 2.83465.

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines