CROP MARKS? HELP!

Hi there, folks
I just got InDesign as my label have put an extremely inexperienced intern on the formatting of my cd art which I send in Photoshop format. He keeps screwing it up and it makes me very uncomfortable. So I have agreed to take the responsibility on myself, and am presently trying to prepare a cover for print.
But I can't for the life of me figure out how to set the crop marks. In Illustrator you'd make an object and then there was a button to set that as crop marks. How can I do it in InDesign? Also the registration marks? There is only one page about it in the help files and it doesn't mention how to actually set these things up.
Also, if anyone can offer further advice so that this goes to print with all the requirements. Is there anything else I need to set up?
Much thanks in advance!

Just designed and printed a CD cover yesterday for a client.
<br />
<br />A CD cover isn't exactly square.
<br />
<br />Make a new document: 4.875" wide x 4.75" high for your CD cover. Margins should be a minimum of 1/8" (.125). This is the live area and most printers prefer a minimum of 1/8" especially for text so it's not so close to the edge that part of it doesn't get trimmed off by mistake. Make a bleed of .125"
<br />
<br />Here's a sample image for you. I use .25 margin because I want the text and image as a unit in the center of my cover.
<br />
<br />
<a href="http://www.pixentral.com/show.php?picture=1hF95d2SYLbzdSPNV8eRPvAL49QG" /></a>
<img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1hF95d2SYLbzdSPNV8eRPvAL49QG_thumb.jpg" border="0" />
<br />
<br />And here is what the job looks like when printed and trimmed:
<br />
<br />
<a href="http://www.pixentral.com/show.php?picture=18G4CebZ8CYluRSgEazoeHTOL2n5Q0" /></a>
<img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/18G4CebZ8CYluRSgEazoeHTOL2n5Q0_thumb.jpg" border="0" />

Similar Messages

  • InDesign crop marks HELP??

    Hey guys!
    So I'm designing a booklet and I need to put crop marks on it. The problem is, when I set the marks they appear not only at the right places but also BETWEEN the facing pages. How can I set them to appear only on the sides and not where the binding of the booklet would be later?
    Thanks!

    Are you making manual crop marks, or maybe using the crop marks script? If so, do you really need them to be manual? You can generate crop marks in the PDF export phase. That's how most people would do it.

  • Scripting newbie...help for a "simple" crop mark script

    Hello,
    I am after some advice or assistance on the scripting side of things for indesign please.
    Basically where do you start? I'm wanting to do some scripts to speed up some repetitive processes.
    What I'm trying to do initially is (what I'd think would be) a very simple script. Basically it's adding crop marks to document, with the horizontal ones running the full width of the document. I've just no idea where to start...
    So, I think the process of the script would be this:
    1. Find document size
    2. Add a horizontal line at 0.1 pt size,
    Length = document width + 20mm
    X axis =  document width divided by 2 (line sits centrally, hanging 10mm over left and right edges)
    Y Axis = 0mm
    3. Add a horizontal line at 0.1 pt size,
    Length = document width + 20mm
    X axis =  document width divided by 2 (line sits centrally, hanging 10mm over left and right edges)
    Y Axis = document height
    4. Add a vertical line at 0.1 pt size,
    Length = 10mm
    X axis =  0mm
    Y Axis = -2mm to -12mm (bottom line sits at -2, top of line at -12)
    5. Add a vertical line at 0.1 pt size,
    Length = 10mm
    X axis =  document width
    Y Axis = -2mm to -12mm (bottom line sits at -2, top of line at -12)
    6. Add a vertical line at 0.1 pt size,
    Length = 10mm
    X axis =  0mm
    Y Axis = document height + 2mm, to document height +12mm (top of line sits at document height +2mm, bottom of line at document height +12mm)
    7. Add a vertical line at 0.1 pt size,
    Length = 10mm
    X axis =  document width
    Y Axis = document height + 2mm to document height +12mm (top of line sits at document height +2mm, bottom of line at document height +12mm)
    For the future I am wanting some more complex scripts but this will hopefully help me understand a little bit.  (I will need one with input tables where you can add variables if that's do-able, but i somehow think it wont be me doing that one!!)
    Thanks in advance for any help or pointers.
    Phil

    As said above, we can walk you through a custom script step by step
    Let me get you started with this: the ESTK Help -- or one of its variants -- is your biggest friend!
    "1. Find document size"
    Use app.activeDocument.documentPreferences.pageWidth and app.activeDocument.documentPreferences.pageWidth for these.
    "2. Add a horizontal line at 0.1 pt size,
    Length = document width + 20mm
    X axis =  document width divided by 2 (line sits centrally, hanging 10mm over left and right edges)
    Y Axis = 0mm"
    app.activeDocument.graphicLines.add () adds a new graphic line on a default position. You can then move it into position.
    Doing the math results in this little script to add the first line:
    newLine = app.activeDocument.graphicLines.add();
    newLine.paths[0].pathPoints[0].anchor = [ -20, 0 ];
    newLine.paths[0].pathPoints[1].anchor = [ app.activeDocument.documentPreferences.pageWidth+20, 0 ];
    newLine.strokeWeight = 0.1;
    newLine.strokeColor = app.activeDocument.swatches.item("Registration");
    newLine.strokeStyle = app.strokeStyles[0];
    A 'line' can consist of a number of paths (consider a compound path), but usually has only one single path. A new line only has two endpoints -- the anchors --, and you can move these around by setting the coordinates with an array of [ x y ] values. Important: These values are in your current measurement units! I'm assuming, for convenience, that you have mm for this. If you see 20 inch wide lines popping up, you know why :-) Another important point: the rulers' zero point must be in the top left of your document. All "absolute" values are relative to this zero point.
    It is perfectly possible to have the script set the correct measurements and move the zero point for you, but now you know why it has to do that.
    Notice you don't explicitly move the center of the new line; in this case, it's easier to immediately move each end point into its correct place.
    There are a few other things you can do to make the script misbehave. The new line is created with the active defaults in your document. You could have the script change the defaults to the correct settings, but that's not really user friendly. Instead, you can change everything by applying new values to the new line only. You can see I set its weight, color, and stroke style.
    A few points on these latter three settings:
    Didn't I just tell you all values are in current measurement units? Well, line widths are always in points (as is font size and line spacing).
    The correct line color is grabbed by asking for a swatch called "Registration" -- you might want to replace this with another swatch name.
    The stroke style is grabbed by blindly using the very first stroke style in InDesign. I found out the hard way using "Solid" (or what is it called) does not work across different languages. Much later I learned there is a language-independent way of using the names, but hey, that's harder to remember.

  • Bleed and crop marks for a magazine. need help

    Can anyone tell me how to place the crop marks for a multiple page project ?
    For example on a left page do i have to set the crop marks only on the left side of the page or all around it ?
    *i'm using PS because i have no experience with ID.
    Thanking you in advance

    jeffozan wrote:
    *i'm using PS because i have no experience with ID.
    You plan to use Photoshop to lay out an entire magazine? I'll say a prayer for you.

  • Help on saving back from CS4 to CS3 with the crop mark issue.

    I am not asking how to create crop marks I needing to know how to save back from CS4 to has already has been created in 3. See issue below.
    I am the only one with CS4 in this office. I have to save back to CS3 for everyone else to read. When looking in the artboard, I can see the un-editable crop marks that were made in CS3, but when I work on the file and save it down, they can no longer call up the crop marks. Any clue as to were they might access what should be there?

    These work great, thank you so much!
    So long as I only work on new stuff, I guess it doesn't matter if I switch to CS3.  :-)   I'll turn down requests for major edits to long documents already done in CS4!
    We have 2 feet of snow on the ground here and are expecting 10-20 more inches of snow starting around noon!  DC is basically shut down.  I live right in the middle of the District, and the roads are a mess here.  I can't imagine how bad the suburbs are.
    Thanks again!
    Phyllis

  • How do I print the guides on artwork so that Printer will see crop marks?

    I designed a wedding invitation in Photoshop CS3 and I need to send him samples of the artwork. I wanted to show him where the Guides are located so that he'll know where to do his cuts. I thought that I could should him where those cuts would go by including the Guides on the artwork. I saved the artwork as a jpeg.
    Kareem

    I did a quick online search and came up with the following.
    http://technology.cca.edu/helpsheets/Photoshop_CS3.pdf
    Check it out and see if it helps. If not, please let me know.
    I have seen advice not to use crop marks in CS3....printer automatically doing that and in some cases charges for removing them. But, I have not been there and done that, so...
    ATR

  • How do I print a pdf without the standard crop marks that appear when I have created it in Illustrator originally?

    Hi
    I am so frustrated as I cannot work out why my pdf files that I have created in Illustrator, print out on my printer with crop marks as well as scaling the image to fit them in on the paper. I just want to be able to print it out without the crop marks at the correct and original size it was designed in.
    Help Please.

    The crop marks are part of the design, no reason why Acrobat wouldn't print them. You could try cropping them out in Acrobat.

  • Adobe Illustrator CC 2014 - Custom Crop Marks?

    Hello all,
    I've been looking for a solution to this problem for some time now, and am hoping to find help here!!
    Adobe Illustrator CC 2014 - want to be able to customize how crop marks are created through Object>Create Trim Marks.  Does anyone know of any plugins that could achieve this?  Manually shrinking and shifting the crop marks takes too much time...
    Thanks in advance to any contributors!

    I know of no plugins for this.
    The fastest way we found was to use Libraries.
    1. Make one set of trim marks and save it in the library.
    2. On a new document, make a box the trim size of your doc.
    3. Snap guides to the 4 edges of the box.
    4. Drag out the crop marks (double, triple, with registration marks, or whatever you created in your original Library item).
    5. Snap each of four mark sets to the guide corners.
    Voila.

  • Booklet .pdf with crop marks, booklet doesn't fit the current paper size warning

    Hello. I am on XP using CS4 InDesign.
    I have the document set up as 4 pages, each 8.5 x 11, however, when creating a booklet .pdf, I mean it to be 2 pages 11x17.
    When I add in the crop marks they do not appear on the .pdf when it is created. I receive a warning in the booklet diaglog that the booklet doesn't fit the current paper size and it says to specify a larger paper size.
    What can I do to have the crop marks on my file? I understand the .pdf will be a little larger than 11x17 in order to fit the crop marks.
    Thanks for any help in advance.

    Hi Peter,
    Thank you. I did try that first, but now I figured out what I did wrong. When the .pdf was made and opened, I cropoped the page according to the marks, but the page remained 12 x 18 instead of 11x17. I made sure that the "automatically adjust to fit marks and bleeds" and "use document bleed settings" was checked in the booklet dialog and print InDesign dialog.
    When I cropped the page again to make sure I sized it correctly, it was 11x17.
    Thank you!!!

  • How do I change the alignment of crop marks?

    When exporting a document as a PDF the crop marks are automatically aligned with the edge of the document, but I need to move them a couple of millimetres in to account for the bleed.
    I can't find any options where I can change this. The only option I can see is 'offset' but that just varies the actual distance of the crop marks from the document.
    I'm sure it's something really obvious but I'm going nuts here. Any help would be great. Thanks.

    Why not make the document the cut size and set the bleed in the document? That's out of box and standard.
    Alternately you can use the Crop Marks script found in the Scripts panel and make boxes in your document's cut size, crop marks based on their bounds.

  • EPS file placed within INDD art shows crop marks when exported to PDF

    Hi Friends -
    I have a INDD art file I'm working on, within which I placed an EPS image.  Upon exporting the INDD art to PDF, the document has what appear to be crop marks surrounding the EPS image.  This is not where the image should be cut, and these marks are being shown in a functional part of the design.  Here is a screenshot of one corner of the EPS; the other 3 corners have identical marks:
    Additional information:
    - MS Windows 7 Enterprise SP1
    - InDesign CS5.5  Version 7.5.3
    - Marks are generated during export process/conversion to PDF; they are not visible in InDesign.
    - EPS file does not create these crop marks when placed into another INDD file and exported using the same process as above.
    - No other elements of the INDD file have similar marks displayed after export.
    Any help with where I might find the setting in INDD to turn this OFF would be greatly appreciated!
    D

    That was probably the most expeditious reply I've ever received in a forum.
    Anyhow, the crop marks are not part of the actual EPS image.  Opening the EPS file in PS or AI reveals no stray crop marks so, unless the marks are somehow part of the EPS settings rather than a visible element of the image, I think it has something to do with INDD and its settings.  To confirm, I did place this EPS in another INDD document and an export procedure utilizing the same steps does not reproduce the crop marks.

  • Multiple crop marks in Ai CS3

    Ai CS3, Win Xp Pro
    I'm setting up business cards for two color printing and need crop marks around each card. Total of 4 cards, 7 cuts. In searching for Multiple Cropmarks on the internet, I'm finding articles that say it's not possible. However, I'm now looking at an Adobe livedocs help page that says:
    Define and view additional crop areas
    Select the Crop Area tool, and then do any of the following:
    To create a new crop area, hold down Alt (Windows) or Option (Mac OS) and drag. Each crop area has a unique number in the upper-left corner.
    To view all crop areas, press Alt (Windows) or Option (Mac OS).
    To set a crop area as the active crop area, hold down Alt (Windows) or Option (Mac OS) and click the crop area you want active.
    To rotate between crop areas, press Alt (Windows) or Option (Mac OS) and click an arrow key.
    When I select the first cropped area with the crop tool, and attempt to copy it using the ALT key, a number 1 shows up in the upper left corner (ok so far). But as soon as I let go of the mouse button, the cropped area just moves to the place I've copied it to, and still has the number 1 in the corner. When I have the crop tool selected, and an area defined, I can press Enter and get a menu. There is an exclamation icon at the bottom signifying "Crop areas: 1", but there's no box to select multiple crops.
    Am I SOL, or is there a trick to this?
    Thanks,
    Sandoer

    Ok, I've sort of answered my own question with a little more research.
    For those that search this topic, here's what I discovered:
    If you have several items that need to be cut, such as business cards, 8 or 10 up on an 8.5x11 sheet, you can
    +create a stroked box at 2x3.5 (for business cards) around each card.
    +one at a time, select a box and from the drop down menus select Filter>Create>Crop marks.
    This will create marks that a printer can use for multiple cuts.

  • (CS3) Crop marks in photoshop

    Hi,
    I need to deliver a PDF file to a Print Shop where I want to print an 8.5 by 11 poster (one thausand of them).
    I designed them on a canvas of 8.75 by 11.25 and created guide lines around the .125 mark around each edge ( i understand that's necessary).
    I have no idea where to go from here. My goal is for there to be no white border around the print. Are there ways to create crop marks/bleeds for for the print shop to work with in photoshop?
    I really appreaciete any help! Thank you in advance!

    Let me reinforce part of what J Maloney has said:
    Never, EVER, allow a printer/publisher to skip the paper proof for something that's going to be mass produced.
    NEVER.
    They WILL screw it up.
    -Noel

  • Crop mark on image when exporting to PDF

    When I export my INDD file to PDF, crop marks appear on one of the images (an EPS file) in the converted document. The crop marks do not appear in the INDD file, nor are they part of the original EPS file. Any idea what's happening and how to get rid of it?

    Screen shots would help here, but the first thing I would try is replace the EPS file with a native file format, either .al for vector or .psd for raster, or PDF for mixed content.

  • Crop Marks/Preparing to Print - PDF

    Hello,
    I have created a 250 page book in indesign.  When I select "Package for Print", printers marks are not set.  If I try just printing the book, I see where I can opt to print with printers marks, but they don't save on the file.  When I go back to Package for print, they're not showing.
    How can I create a PDF of the entire book that I can upload to a printing website (going to use Mimeo.com) WITH crop marks shown on that file?  Mimeo only accepts PDF files.
    I have CS5 on a Mac.  Please be specific as to what instructions you give, as I'm new to this.  Thanks!
    Please help!!   THanks!

    Hi Bob,
    Yes, its a book... well actually a planner...
    I have CS5 (on a Mac).  Can you give me specific instructions as to
    where I'd find that?  Any of the ways that I go to export a PDF, I
    don't see those options available.  Thanks!
    Danielle Marie Crume
    http://www.ahamprema.com
    http://youknowitbyheart.com
    “What the caterpillar calls the end of the world, the master calls a
    butterfly.” - Richard Bach

Maybe you are looking for

  • How to list all .URL shortcuts on multiple computers desktops

    I've been searching to find a Powershell script that polls a list of computer names and then returns a list of the .URL shortcuts along with their targets from the logged in users desktop. Does anyone know if there is one out there or at least point

  • Goods Receipt PO Error

    Hi, I had code that add a good receipt PO with the DI API that works with SAP 2004 and 2005. Now, with SAP 2007, I receive this error when adding a goods receipt po with a product managed by serial number. -10 You should use existing serial/batch num

  • How to Restrict the users in oracle applications

    Hi, I want to Restrict the users in oracle applications without using database can any one please expalin me how to resttrict the users using middletier Thanks Gita

  • Relocation Error In Solaris - Symbol 0FI__rtbi_fv not found

    Hi!, I get the following error, when i try to load a library using JNI, (jdk 1.3.0_02) in Solaris 2.6 : It cribs about symbol __0FI__rtbi_fv not found. I used nm on the .so and got the following output - [123762] | 0| 0|NOTY |GLOB |0 |UNDEF |__0FI__r

  • What is the best way to capture RGB8 image to memory for later write to disk?

    HI- I have been using the code below for some time now but wonder if an expert can take a look and let me kown if there are ways to improve it.  Problem I run into is that I preallocate the memory beforehand (camera.buffering[]), and with a 5 MP came