Putting registration marks on sheet using Pages08?

I am creating a short handout and want it to be 1/3 page wide. Great - I have a 3 column layout and am ready to print. What I want to is put small registration marks at the top and bottom of the gutter area beteen the columns to aid in using a papercutter. Any way to do this short of measuring each page and using good old #2 pencil?

When you are using the SaveAsPDF option for the book (which is the recommended route [now] over the File > Print], the Registration Marks are found on the Settings tab. Onc these have been selected, they are sticky (i.e. FM remembers what you used last).
Using the File > Print settings, there is a difference in what FM remembers between printing individual files and printing the book file. You have to ensure that every file (including the book) has the correct setting when using this route.

Similar Messages

  • Preset to put a registration mark in center of page

    I cannot figure out how to put my reg. mark in the center of the page to set it up for silk screening! When i click Print and go to marks and bleeds and select the tab for Registration Marks they only go to the outer corners and there is not a preset (that I can see) that puts them to the center. Please help!!

    Typically reg. marks are outside the print area. If you need one within the page area you'll need to create your own. You can create the register mark, like any other artwork and assign it the default "Registration" color from the swatch panel.
    To place something in the center of a given artboard:
    Either:
    Cut artwork element(s) (Cmd-x)
    zoom to artboard (cmd-0)
    Paste (Cmd-V)
    Or:
    Select artwork element(s)
    Choose "Align to Artboard" in pull-down menu in options bar
    Click "Horizontal Align Center" and "Vertical Align Center" buttons in option bar

  • Unable to display double values in Excel sheet using JExcel API

    Hi
    I am writing code to generate report in the form of Excel Sheet using JExcel API.
    Everything is going fine but whenever I want to put some double values in a cell it is only showing 2 decimal places. My problem is "I want to show upto five decimal places".
    Any kind of reply might help me lot.
    Thank U.

    If you enable the submit zero option, it still happens? This is a new feature on the display tabl
    #NumericZero Enhancements
    To display a numeric zero in place of an error message, you can enter #NumericZero in any of the three Replacement text fields. When you use the #NumericZero option:
    · Excel formatting for the cell is retained.
    · All calculations with dependency on the cell will compute correctly and will take the value of this cell as zero.
    · This numeric zero is for display only. When you submit, the zero value is NOT submitted back to the data source.
    You cannot set display strings for cells that contain an invalid member or dimension name (metadata error). Metadata errors produce standard descriptive error messages.
    Errors are prioritized in the following order from highest to lowest. The error message for a higher-priority error takes precedence over that for a lower-priority error.
    1. (Highest) Metadata errors
    2. #No access
    3. #Invalid/Meaningless
    4. #No data\Missing

  • FrameMaker 10.0.2 still not printing to pdf with registration marks

    I upgrade from FrameMaker 10.0 to 10.0.2 this weekend and was able to print a test page with registration marks. Today I cannot. The page size is larger than the document. The message "registration marks are outside of page size" appeared once.
    My book is 3.5" x 6" and the Format > Page Layout > Page Size is 8.5" x 11". The print driver is Adobe PDF. Western  registration marks are turned on.
    Am I doing something wrong?

    I haven't checked this lately, but I'm remembering that registration marks only appeared automagically if the Press job option was enabled.
    Otherwise, as Van suggets, just add them with Acrobat (assuming you have the full package).
    Also, I hope you're printing to the Acrobat printer, not using SaveAsPDF...
    Art

  • Change color for trim and registration mark

    The trim and registration marks are having the color name "All" in the generated pdf from InDesign. Any one help me out on how to change the color to K (black) while generating PDF out of InDesign.

    JohnAD77 wrote:
    Is it possible to make to 4/c to 1/c (black 100%) while generating PDF itself without adding marks in the document?
    Maybe, in CS6, by exporting to Grayscale, but this will make everything black ink only. Otherwise, no.
    To add your own marks, add a slug area to the file, draw whatever you want for marks in that area, using [Black], and turn off automatic marks in the export dialog, but Include Slug Area under the bleed settings.

  • Can I put a mark, a red dot, on a photo?

    Hi, sorry for this newbie question, have never used iPhoto and need to know if I can use it to place a red dot on a part of any photo. ???
    I am posting some pictures on a gardening forum. Trying to identify a certain type of tree. There are many trees in each photo so they suggested putting a red dot on the tree I'm targeting so they can see what the heck to ID. Can I do this?
    Can I take a photo on my desktop and put it in iPhoto and use that software to place a red dot on a particular tree in the photo, then have iPhoto save that photo with the red dot, then upload it to photobucket where I can paste it into the forum so the tree will finally be identified?
    And if iPhoto will do this, how? What steps do I take?
    Thanks!

    Cascadians
    Welcome to the Apple Discussions.
    No, iPhoto won't do this for you. It's a photo organiser, you need an image editor.
    Check out Acorn, Photoshop Elements or Seashore. There are many others. Search on MacUpdate.
    If you don't normally use iPhoto then leave it put of the mix. Use the Editor to mark the pic, then upload to wherever using your Web browser as you normally would.
    Regards
    TD

  • Placing registration marks on the corners of document

    I have to process a lot of files to be router trimmed which requires them to have very specific registration marks.  There are 2 different marks we have to use.  The first mark is at the top left corner of the image contains 2 .25" dots separated vertically by a 1" gap.  The other mark is one .25" mark that is in the top right, bottom right, and bottom left corners.  I have both of these registration marks saved as symbols (or just AI files).  I want to be able to have the script automatically place the appropriate marks in the corners.  How can this be done?
    Thanks!
    Chris

    here you go, your symbols must be the first and second in the symbols panel. Top/Left symbol must be the first in the Symbols panel. The other symbol must be the second in the panel
    #target Illustrator
    //  script.name = addRegistrationSymbols.jsx;
    //  script.description = adds custom registration marks (saved as symbols) to each corner of the active arboard;
    //  script.required = 2 symbols. Top/Left symbol must be the first in the Symbols panel. The other symbol must be the second in the panel
    //  script.parent = carlos canto // 10/30/14;
    //  script.elegant = false;
    // reference https://forums.adobe.com/thread/1621840
    // usage: your symbols must be the first and second in the symbols panel.
    if (app.documents.length > 0) {
      var idoc = app.activeDocument;
        var margins = 0;
        var bounds = idoc.artboards[idoc.artboards.getActiveArtboardIndex()].artboardRect;
        var ableft = bounds[0]+margins;
        var abtop = bounds[1]-margins;
        var abright = bounds[2]-margins;
        var abbottom = bounds[3]+margins;
        var twoDots = idoc.symbols[0];
        var twoDotsInstance = idoc.symbolItems.add(twoDots);
        twoDotsInstance.position = [ableft, abtop];
        var oneDot = idoc.symbols[1];
        var oneDotInstance = idoc.symbolItems.add(oneDot);
        var h = oneDotInstance.height;
        var w = oneDotInstance.width;
        oneDotInstance.position = [abright-w, abtop];
        var dup = oneDotInstance.duplicate ();
        dup.position = [abright-w, abbottom+h];
        var dup2 = oneDotInstance.duplicate ();
        dup2.position = [ableft, abbottom+h];
    else {
        alert ("there are no open documents");

  • I need a program that will creat registration marks.  can I do this in Adobe elements 11?

    I need a program that will creat registration marks.  can I do this in Adobe elements 11?

    Most of the users look for copyrighting or having a watermark on their images to protect them from illiegal usage.
    If you are looking for this perfect use then below links can help you:
    There are multiple ways to add captions/watermark/copyright info in Photoshop Elements
    Below KB articales should be helpful in this context depending on your need and usage and expertise
    http://kb2.adobe.com/community/publishing/851/cpsid_85114.html
    http://kb2.adobe.com/community/publishing/851/cpsid_85127.html
    http://kb2.adobe.com/community/publishing/851/cpsid_85128.html
    Thanks,
    Garry

  • Add document size to registration marks

    Is it possible to customise registration marks so they add the document size? Or is there a plugin that will enble this function? I'd like to implement it in my studio to help with our sign off procedure.

    If you add slug space around your document (which goes around the bleed), you can put anything you like in there.
    It's still a manual job -- the registration marks can be adjusted somewhat in size and position, but adding a custom variable text is too much.

  • Registration marks

    Using FrameMaker 10 on Windows:
    I have a book with an odd-sized page (3¾ x 8½) that I am printing on regular 8½ x 11 paper.  Each file of the book uses a common page layout, common reference pages, &c. In the File—>Print menu, I have selected either Western or Tombo registration marks. When I print some of the individual files of the book, I can get the registration marks to appear. But for other files in the book — or when I attempt to print the entire book — registration marks will not appear.
    What attribute of a file (or book) controls whether registration marks can be produced?

    When you are using the SaveAsPDF option for the book (which is the recommended route [now] over the File > Print], the Registration Marks are found on the Settings tab. Onc these have been selected, they are sticky (i.e. FM remembers what you used last).
    Using the File > Print settings, there is a difference in what FM remembers between printing individual files and printing the book file. You have to ensure that every file (including the book) has the correct setting when using this route.

  • The goal is to synchronize an excel sheet using Microsoft Excel 2010 with Sharepoint 3.0

    The goal is to synchronize an excel sheet using Microsoft Excel 2010 with Sharepoint 3.0. We have already installed an add-in (Excel 2007 Add-in: Synchronizing Tables with SharePoint Lists) that was supposed
    to help the synchronization of excel to Sharepoint, but it did not work. We would like to synchronize information about a calendar from excel to Sharepoint 3.0, so every time a change is made in excel it automatically updates in Sharepoint.

    ootb, changes in excel don't sync with a SharePoint list, the other way around is possible.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Upload Excel sheet using Data Integrator 6.1?

    hi all ,
    Upload Excel sheet using Data Integrator? and how to create ODBC for the PC and jobserver i am using version 6.1? i am using excel as my one of the data source and tell me how to use different types of data sources in DI . after uploading the xl file if i apply any transform on the excel data i will give error like
    Posted: 25 Sep 2008 04:30
    Post subject: Re: Upload Excel sheet using Data Integrator? 
    I am getting the error like
    3128 292 CON-120302 09-25-08 09:59:40 ODBC call <SQLDriverConnect> for data source <sas> failed: <[Microsoft][ODBC Driver Manager] Data source name not found and no
    3128 292 CON-120302 09-25-08 09:59:40 default driver specified>. Notify Customer Support.
    1512 2992 CON-120302 09-25-08 09:59:41 ODBC call <SQLDriverConnect> for data source <sas> failed: <[Microsoft][ODBC Driver Manager] Data source name not found and no
    1512 2992 CON-120302 09-25-08 09:59:41 default driver specified>. Notify Customer Support.
    Please help me out
    Thank u

    Hi Shonti,
    The DI 11.7 installer can be used to upgrade a DI 6.1 local repository (e.g. the upgrade is supported).  This will migrate all jobs and flows.  They will remain intact, however, this is always a major migration effort and should not be taken lightly.  If you do upgrade, please make sure this is a planned effort with rigorous testing and validation.  You should also ensure that you consult the release notes and [supported platforms documentation|https://websmp110.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000712240&_SCENARIO=01100035870000000202] for the 11.7 package you intend to install.  The DI 11.7 documentation also contains info about how to install and configure the Excel Adapter, and what functionality it provides.
    Thanks,
    ~Scott

  • I am putting together a slide show using iphoto and I wanted to add a description on each slide/photo. How can I do that? Also on the choice of music for the silde show, if the slide show is longer than one song can you chose a different song for backgrou

    I am putting together a slide show using iphoto and I wanted to add a description on each slide/photo. How can I do that? Also on the choice of music for the silde show, if the slide show is longer than one song can you chose a different song for background music?

    This might help
    http://www.apple.com/findouthow/photos/#slideshow
    Regards
    TD

  • How to get the password of a password protected Excel Sheet using java/jxl

    Hi ,
    how to get the password of a password protected Excel Sheet using java / jxl program.
    plz any one help me .
    Ramesh P
    [email protected]

    If they've implemented the password system correctly there probably isn't a way of getting the password at all.

  • I replaced the battery on my RAID card, when I booted my mac pro up, I get the folder with the question mark. I used a boot USB drive to boot and when I looked in the RAID utility, my RAID 5 volumes were no longer showing, advise.

    I replaced the battery on my RAID card, when I booted my mac pro up, I get the folder with the question mark. I used a boot USB drive to boot and when I looked in the RAID utility, my RAID 5 volumes were no longer showing, advise.
    Ernest

    Not sure if I'm following you. I have 4 hard drives installed on my Mac Pro. I had a RAID 5 configured and functional for about 5 months. My battery died on the RAID card. I replaced the battery, seated the RAID card back in the slot I removed it from. When I booted to the USB drive to look in the RAID utility, I could see the battery is charged but my volumes are not showing.
    The drives don't show in disk Utility. I built the RAID with the RAID Utility and they did show there. I have a early 2008 Mac Pro, Mavricks OS running Mac Server

Maybe you are looking for

  • Follow up to previously answered Mac/Elements 9 question

    I've got the following system: Model Name: iMac   Operating System: OS X 10.5.8   Model Identifier: iMac7,1   Processor Name: Intel Core 2 Duo   Processor Speed: 2.4 GHz   Number Of Processors: 1   Total Number Of Cores: 2   L2 Cache: 4 MB   Memory:

  • 'F4IF_INT_TABLE_VALUE_REQUEST'  doest not show any list for selection

    hi sapiens .... i hav an issue ... i used a parameter for which F4 help was assigned using 'F4IF_INT_TABLE_VALUE_REQUEST'  .... to this an internal table any return fields was given .. if v press F4  window is opening for seletion but no values in it

  • Cl_gui_frontend_services= gui_download - wrong behaviour with Windows UAC

    Hello, we are using the method cl_gui_frontend_services=>gui_download to store files on the presentation front end (Windows Vista with UAC). When the user has no windows rights to the target directory and UAC is active, then the method gui_download s

  • Adobe Reader 8.0 - Heads UP!

    I just installed the Adobe Reader 8.0 for Mac (specifically 10.4 Tiger releases) on 10.5 Leopard, to see if it would work and what would be 'broken'. I can say that printing was broken on my machine, and the graphics didn't look right. Preview looked

  • [Openbox] Something's fishy with window naming (WM_NAME)

    Hi, I've experienced that there seems to be something wrong with WM_NAME variable in openbox on some systems. On my laptop the name e.g. urxvtq (urxvtc started with -name urxvtq) is set in this variable which can be checked using xprop click on appli