Back

If your email is not recognized and you believe it should be, please contact us.

  • You must be logged in to reply to this topic.Login

Is it possible to move items across entire multi-page document simultaneously?

Return to Member Forum

  • Author
    Posts
    • #61272
      jenna
      Member

      I'm printing postcards with addresses merged in from an excel spreadsheet. I'm running them 3 up, but they're 2 sided, so I had to set up one document with the fronts of the cards, then I have the multipaged document with the backs of the cards. Stupidly I printed the fronts first, and now I've loaded the paper back into the printer to print the backs and I need to nudge the image a little in order to get the crop marks to line up from front to back, but since there are about 50 pages in the document I have to go to each page and select all, group, nudge one step, then go to the next page and repeat, etc. I'm just wondering if there is some simple way to move everything on every page at the same time, other than with the master spread. I kind of doubt it, but I thought I'd ask just in case.

      Thanks!

    • #61275

      As with a lot of repeating stuff, Javascript can help you here! This short script will move all items to the left by '-4' in your current units. (So if your setup is in inches, you might want to start with a somewhat smaller value :D )

      Change the '-4' into whatever you want — negative moves to the left, positive to the right.

      if (app.version < “6”)
      nudgeAll();
      else
      app.doScript(nudgeAll, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, “Nudge All”);

      function nudgeAll ()
      {
      for (i=0; i<app.activeDocument.allPageItems.length; i++)
      try {
      app.activeDocument.allPageItems[i].move (undefined, [4, 0]);
      } catch (e) {}
      }

      (Edit: hmm, on hindsight I'd better add an undo for this!)

    • #61280
      atwfg828
      Participant

      You might try your printer dialog (under print then printer). Some printers allow you to shift where it prints on the page by a prescribed increment.

Viewing 2 reply threads
  • The forum ‘General InDesign Topics (CLOSED)’ is closed to new topics and replies.
Forum Ads