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

crop marks around objects

Explorer ,
Dec 02, 2020 Dec 02, 2020

hi

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

Screen Shot 2020-12-02 at 18.55.50.pngexpand image

TOPICS
Scripting
904
Translate
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

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

Translate
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

only rectangles

Translate
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

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

Translate
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
Yes. I need cross marks

נשלח מה-iPhone שלי
Translate
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
Translate
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

i didn't sucsses to do it.

Translate
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

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.

Translate
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

 

Tom Winkelmann  wrote:                                                                                                                                                          

"You can use this script twice."

 

One time with the right settings should be enough.

 

MakeCropMarksAI_v1_4_14.pngexpand image

 

 

@Tom Winkelmann - your link does work for me

Translate
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

@pixxxelschubser

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

Translate
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

Ja, das hättest du.

😄

Translate
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
// 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]);
Translate
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

thanks!!!

how can i set it to mm?

Translate
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
LATEST

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

 

Translate
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