Skip navigation
Currently Being Moderated

Page display resolution setting

Oct 27, 2010 3:33 PM

Many or all CS5 apps would benefit from the same kind of Page Display preferences that Acrobat Pro provides. It allows you to set page display resolution at the pixels per inch setting that will display content at true actual size (100pct viewing). By that I mean an 8.5x11 page on screen is the same size as an 8.5x11 page in your hand. It may be that Acrobat's default "Use system setting" figure (81ppi on my display) is all that's needed to get reasonably close, but InDesign, Illustrator, Photoshop, etc., don't have this ability. And Acrobat can be setting to any ppi that gets the job done. Print designers, especially, need true actual size to have a better feel for the scale of the physical piece and design elements on it, notably including type.

 
Replies
  • Currently Being Moderated
    Jan 6, 2011 6:39 PM   in reply to Rick Meikle

    I too wish ID had the "pixels" measurement unit. I still have ID4, so don't know if this has been included in ID5. But if not, for those of us who wish to create text boxes and other graphics for websites, it would certainly be a huge help. As it is, I have to find some online conversion tool to change picas or inches to pixels.

     
    |
    Mark as:
  • Currently Being Moderated
    Jan 7, 2011 5:00 AM   in reply to KMakk2

    Work in points as your unit. That's equivalent to 72 ppi, and is what CS5 does when you say your layout is for the web.

     
    |
    Mark as:
  • Currently Being Moderated
    Jan 7, 2011 5:31 AM   in reply to Peter Spier

    That's a fair answer to a load of nonsense ...

     

    1. The original poster was not concerned about pixels, and in fact showed by his very feature request that he was acutely aware of the difference between pixels and real, actual, physical dimensions. The OP did not ask for, nor does he want, measurement in pixels -- in fact, he wants the exact opposite.

     

    2. There is no measurement unit called "pixel". A "pixel" is not a defined distance, and there are no online conversion tools to convert between picas or inches and pixels. If there are, they are a load of nonsense as well.

     

    3. Good news is that CS5 has, yeah!, "pixels" as measurement units. But ... since the pixel is not a really existing unit of measure, it's of no use at all and you might as well pretend (in your mind) what CS5 pretends on the screen: one pixel equals one point.

     
    |
    Mark as:
  • Currently Being Moderated
    Jan 7, 2011 8:36 AM   in reply to Rick Meikle

    I think your request has a lot of merit. A lot of "me too" here, though, carries far less weight than an official request at Adobe - Feature Request/Bug Report Form

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 20, 2011 10:55 AM   in reply to Rick Meikle

    Hi Rick

     

    Setting correct screen resolution is indeed a much needed feature in InDesign and has been on the wish list of print pros for a long time.

     

     

    I'm glad Peter pointed out the Feature Request form, and I'll use it. (I would hope too that Adobe would put equal weight on request in this forum,otherwise it's pretty purposeless.)

     

    For future reference for those who forget where Peter's link is, the Feature Requust form is here:

     

    Adobe.com > Contact Abode (way at the bottom of the page) > Feedback > Request a Feature

     

     

     

    For those not familiar with the issue, InDesign, sees screen resolution as 72 ppi. Unfortunately, screens haven't been 72 ppi for many years. (My screen, for example, is 104 ppi.)

     

    The result is that documents displayed at "Actual Size" do not print at the size they appear at on screen. My 104 ppi screen displays an inch as .69". So everything is much smaller on screen that it actually prints.

     

    This has many implications in print design that I won't list here.

     

    Photoshop solves the issue simply (as, I believe, does Quark XPress; though someone else can confirm or correct). It provides a preference in Units and Rulers that allows you to enter your screen resolution. This allows you to see the image exactly at final output size.

     

     

    Currently, the workaround is to view at the inverse of your screen error (Actual screen res / 72 x 100). In my case, this is 104/72x100 = 144%.

     

    So, at 144%, my screen is displaying the document at actual size and I'm getting a realistic assessment of legibility and overall design.

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 21, 2011 12:30 PM   in reply to Thomas Dearie

    Thomas:

     

    I hope you will tolerate a stupid question from a non-print pro.  I use ID4 as my primary word processing machine because of the wonderful control over the documents that I create.  My Apple Cinema HD 30" Display has a resolution of 2560x1600.  A nice person on Apple Discussions showed me how to convert resolution to ppi:

     

    The diagonal is 30 inches and √(2560² + 1600²) pixels.

    30" = √(6,553,600 + 2,560,000) pixels

    30" = √9,113,600

    30" = 3,018.97 pixels

    Pixels per inch = 3,018.97/30 = 100.63

     

    Using your formula in combination with the ppi calculation, my documents should be set at 139.76% rounded to 140%.  The formula in Excel is =(100.63/72)*100

     

    In practice, a new, untitled page set at 141% is a perfect fit for my 8.5 x 11 inch paper.  I would say that the calculations yielded a surprisingly accurate result.  Thank you for the explanation.

     

    Now for the question:  How do I set a new, untitled page or document to a default 141%?  Currently, the default % size of a new document on my display is roughly related to the size of the ID4 window.  If I increase the size of the window, the size of the page increases.  Is there any way to set a default so that the document is always 141%?  This would be a real boon to my work, but I don't know how to do it.  Thanks for any assist you can give.

     

    John

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 21, 2011 1:23 PM   in reply to Rick Meikle

    Here's a one-line script that Dave Saunders wrote years ago for setting the zoom size to accurately reflect your screen:

     

    //by Dave Saunders. Replace the percentage number with the correct value for your screen

    app.layoutWindows[0].zoomPercentage = 134;

     

    Change the number to the calculated percentage for your monitor, then save as a plain text file with a .jsx extension and load into your scripts panel folder (see How to install scripts in InDesign | InDesignSecrets) then assign a keyboard shortcut to it (one candidate would be to use the current default shortcut for 100% zoom) and you can run the shorcut to get your true 100% view. It won't help the view when you double click the zoom tool but it's a start.

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 21, 2011 1:34 PM   in reply to Peter Spier

    Also, if you don't want to do math, you can do something like this:

     

    var monitorWidth = Number(1680);
    var monitorHeight = Number(1050);
    var monitorDiag = Number(22);
     
    if(app.documents.length){
        var myZoom = Math.round(((Math.sqrt(Math.pow(monitorWidth,2)+Math.pow(monitorHeight,2))/monitorDiag)/72)*100);
        app.activeWindow.zoomPercentage = myZoom;
    }
    

     

    Just change monitor data.

     

    Hope that helps.

     

    --

    Marijan (tomaxxi)

    http://indisnip.wordpress.com/

    http://inditip.wordpress.com/

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 21, 2011 1:51 PM   in reply to Rick Meikle

    Rick:

     

    Thanks for the reply.  I fiddled around trying to set a default by closing a document before quitting the application.  This yields scant success only when using a new document.  Existing documents seem to keep the size at which they were originally saved.

     

    My take away from this exercise is that your request is the only desirable way to solve this thing.  Good luck to us all.

     

    John

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 21, 2011 1:53 PM   in reply to Peter Spier

    Thanks Peter and Marija

     

    I'll try these out when there's no you-know-what hitting the fan around here.

     

    A ready made actual size view will be a huge time saver.

     

    Cheers

     

    Tom

     
    |
    Mark as:
  • Currently Being Moderated
    Feb 21, 2011 5:36 PM   in reply to Rick Meikle

    Indeed - an out of the box working solution is a better answer, to be sure.

     

    I had never asked for the feature because, with Photoshop having the feature, I thought it was on the way in InDesign CS5.

     

     

    Oh - and John - the other guys answered your not-remotely-dumb question as well or better than I could, so nuff said.

     

    Cheers

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points