Displayed page size - Actual Size

Hi,
When I set View > Zoom to "Actual Size", the Zoom factor is shown as 100%,
but Pages displays my page smaller than the actual size (about 66% width).
When I change the Zoom factor to 152% Pages shows the real page width.
BTW When I export this page to PDF, open it in Preview and select View > Actual Size
I see the page in its real, correct size.
I'm still using Pages version 4.3 (1048). Is it the same with a later version of Pages?
Many thanks.
27" iMac (2560 x 1440 pixel)

Thanks, this works, but I see the page now in 152% zoomed view (though this should be the actual size = 100% view).
After inserting a small image (PNG file, 29 x 20 pixel) in this view, the image is also displayed
152% larger than required, even though the size under Inspector > Metrics (shown as 1.02 cm x 0.71 cm)
is described as "Original Size" (the "Original Size" button is shown grayed).
So in thisview (which I need), what can I do so that my image will be displayed in its original size (29 x 20 pixel)?
(Manipulating the image's dpi (PNG or TIFF) didn't help.)
27" iMac (2560 x 1440 pixel)

Similar Messages

  • How to display at true actual size (Mac)

    The background: InDesign was unable to display work at true actual size until CS6 came along. (So that 1 inch on the screen rulers equals 1 inch on a physical ruler.) Unfortunately, CS6 still doesn't get it right if your display is set to something other than its native resolution. For example, if I set my 27" NEC SpectraView display to "Best for Display" in the Displays system preference panel, then viewing at "Actual Size" in Indesign CS6 achieves true actual size. But that resolution is way too high, making the features of the user interface way too small. The comfortable display resolution is "scaled" to 1920x1080, which provides a nice 2-page layout viewing area (at true actual size) plus a comfortable user interface. However, InDesign CS6 ignores this and continues to draw the "Actual Size" view based on "best for display" resolution, and that results in a greatly shrunken image. Acrobat Pro has gotten this right for several versions now, but it is apparent from this and other CS shortcomings that the different product groups at Adobe aren't very good at what Samsung does and fail to copy each other's work.
    The solution to achieving "true actual size" is a script written by Dave Saunders (and probably others) some time ago:
    //by Dave Saunders. Replace the percentage number with the correct value for your screen
    app.layoutWindows[0].zoomPercentage = 113;
    If you're like me and don't really use scripts, here is what to do with it on a Mac (with apologies to Dave and other experts who know a helluva lot more about this than I do):
    1. Copy the text for the script and paste it into the blank window that opens when you start ExtendScript Toolkit CS6 (in Applications>Utilities>Adobe Utilities - CS6). Leave it open.
    2. Go to Acrobat Pro>Preferences>Page Display and under Resolution note the number associated with "Use system setting". (On my system it is 81 pixels/inch.) I also suggest enabling that setting if it isn't, so that Acrobat also displays at true actual size.
    3. Divide the number from Acrobat by 72, then multiply by 100. (This is essentially a percentage calculation of system resolution over the conversion value of 72 points/inch, which produces 112.5 in my example. I round it to 113.)
    4. In the open script, change the number to what you got from the above result (113 in my example).
    5. Save the script with a name such as "True actual size.jsx" and leave it on the Desktop where you can get it at later for dragging.
    6. In InDesign, go to Window>Utilities>Scripts, then right click on User and choose Reveal in Finder. Drag your script into the User folder. (I recommend option-dragging it to leave the original on your Desktop for archiving.)
    7. Test the script in an open InDesign document by double clicking on the script. The display should now show your work at true actual size.
    8. The scripts window is awkward at best, so the last step is to assign a keyboard shortcut to your script. I use Control-1. Go to Edit>Keyboard Shortcuts… and choose Scripts. Scroll down to the bottom, where you should see your script listed. Highlight it and enter Control-1 (or whatever you prefer) into the New Shortcut window and click Assign. Then click Save. You won't be allowed to modify the Default set, but I was fine with "Default copy".
    Now whenever you want to view your work at true actual size, just hit Control-1 (or whatever you chose for a keyboard shortcut).
    You might want to copy these instructions into a TextEdit file and put it with your script file in a folder that you can find when the time comes to upgrade to CS7, because I'll lay odds that you're going to need to achieve true actual size all over again.
    Lastly and far from least, thank you for the script, Dave! If you or other pros come across this and see corrections or improvements, please set me straight.

    Finder -> View menu -> Show Status Bar
    Regards.

  • Unwanted ZOOM - view page at Actual Size problem

    Hi - Has anyone had this issue and worked out how to avoid it.
    I design a site at 100% zoom in Muse, or actual size. Publish the site, and it is zoomed in when viewed in the browser !
    That is to say - in Chrome at ACTUAL SIZE it is 1 zoom larger than it was designed. The same using Safari, one tap of zoom bigger than it was designed.
    This ruins the look and is no good to have to zoom out and other people wont know they need to.
    I have experimented and stripped almost everything from the design apart from a bit of web safe arial text within a much bigger text box, made sure content is within the content area, still when previewed the page is larger than designed.
    Any tips would be great - Thanks
    _ I may now have got it to PREVIEW at the same same size as design, but still the same problem when viewing in browser.

    What's the URL for your site?

  • Lob size & actual Size

    Hi All,
    I can get the actual size of the lob from the following command
    select sum(dbms_lob.getlength (<lob column name>)) from <table_name>;
    & the size of the lob segment from dba_segments
    select bytes from dba_segments where segment_name ='<lob segment name>' and owner ='<table owner>';
    How can I combine both in the same query? That s actual size of the lob & the segment_size for the lob. I have tried to capture both in single query but in vain.
    can someone help?
    thanks

    This query should work for a single LOB column in a single table and takes into account the 2 segments needed for each LOB column:
    SQL> create table t(x int, y clob);
    Table created.
    SQL> set NULL null
    SQL> select segment_name, index_name from user_lobs;
    SEGMENT_NAME                   INDEX_NAME
    SYS_LOB0000015911C00002$$      SYS_IL0000015911C00002$$
    SQL> select v1.col_size, v2.seg_size from
      2  (select sum(dbms_lob.getlength(y)) as col_size from t) v1,
      3  (select sum(bytes) as seg_size from user_segments where segment_name in
      4   (
      5    (select segment_name from user_lobs where table_name='T' and column_name='Y')
      6    union
      7    (select index_name from user_lobs where table_name='T' and column_name='Y')
      8   )
      9   ) v2
    10  ;
      COL_SIZE   SEG_SIZE
    null           131072Edited by: P. Forstmann on 11 févr. 2011 13:30

  • Web page not actual size...

    For example:
    If I drop a photo right on the edge of of my page in i-web, and then publish it to 'local folder' and view it, the photo appears some distance away from the edge.
    How do i get a true view of my page on i-web ?
    thanks
    Niel

    Cyclosaurus has posted some javascript that lets you move content to the edge. I've not used them so can't comment on how effective they are. You can read about them here:
    http://discussions.apple.com/thread.jspa?messageID=9273769#9273769
    http://discussions.apple.com/thread.jspa?messageID=9094929#9094929
    OT

  • Help, mostly with rendering size, not file size, actual size

    I made a short 4 second movie in after effects cs5, there are really no fancy effects, just a car with wheels turning driving across the screen, the size is super small at 167px width x 315px height. It's 30 fps.  It's from a set of three, I have no major issues with the other two but for some reason, when I render this one, it comes out super blurry/pixelated and the size is twice of what it should be, it's not too size of how I built it, and I can't resize it.  I think it looks so bad because it isn't coming out the right size, but I can not for the life of me figure out why. This is for my job, and I have to show it to the higher ups so I need it to look as crisp as possible. Any ideas what would make this happen? I've rendered so many different times, i brought it into Adobe media encoder, I feel like I am just missing some little switch, but can't find it. I render quicktime as an animation, it's so small, it doesn't matter if I do animation.  I've tried at the default settings of best and lossless, I've changed things, I am not sure what else I should do, anybody have any insight? I can provide more info if needed, thanks so much in advanced!

    167x315 is your comp size for all three comps and you know this absolutely.
    Your render settings are exactly the same for each of the three comps and you know this absolutely.
    You shoudl be able to examine the properties of the output movies by either brining them back into AE or using the inspector in QT. Each will show a movie size and a display size. A tiny movie, like 167x315, will look awful if played at normal viewing size of 640x480 because it will be scaled up by twice, each pixel will be four times its native size. That can happen when a flag gets set in QT to display a movie at full screen size which is different from the falge that sets it to display full size.
    Double check everything.
    You shoudl be able to render out comp 1, which is good, and then dleete everything in comp 1 and fill it up with stuff copied and pasted out of comp 3. Then you use the exact same render settings again.  

  • Email button "actual size" attaches reduced size

    I recently noticed that when I use the "email button" in iphoto to email a photo and select "actual size" it ends up creating an email with the photo at a reduced size, however this does not happen when I attach photos using the photo browser button in Apple Mail. For instance I attached a 4.5 MB image directly from iphoto using the email button the image in the email ended up being 2.3 MB even though I selected actual size. I then opened Apple Mail and composed a new message, I selected the same photo with the photo browser button, dragged and dropped it and it attached at actual size. Is there any way to attach at actual size using the iphoto email button?

    LN,
    Thanks for the info. When I email the photo via the iphoto email button and select actual size, actual size is also selected in the email and the file size is still reduced. In addition the size reduction varies from email to email. For instance if I try to send the same 4.5 MB photo from iphoto it may make it 2.3 MB in one email and 3.0 MB in another, both times actual size was selected in iphoto and the email? Any ideas? Thanks again!

  • Why does my cinema display interpret "actual size" as 75% size?

    I just switched from a 19" CRT to a 20" Apple cinema display and in all of my design programs (Quark, Illustrator, Photoshop, etc) the "actual size" view is about 25% SMALLER than actual print size. Even web pages are reduced. Is there any way to rectify this? Even fonts and folders are painfully small. Reducing the screen resolution only makes everything big and blurry.
    I didn't think that a larger monitor would actually shrink everything!
    Please help!
    Thanks!

    It has to do with the different resolutions both monitors have.

  • "actual size" does not display as actual size

    If I open a document with "preview", and choose "dispay>actual size", the document will be displayed exactly at the actual size. For instance, an A4 document will be displayed exactly as large as an A4 size piece of paper. I checked by actually laying an A4 on the screen: they aligned perfectly. It appears that this program is aware of the pixel size or amount of Pixels Per Inch of my screen.
    However, any other program I use to create documents, doesn't display "actual size" or "100%" properly.
    Both iWork and Microsoft Office programs display documents way smaller than the actual size when set to 100%. Its is more like 50% to 60% of the actual size. Adobe acrobat displays at about 75% of the actual size. It seems that these programs base the display size on a preset pixel size or amount of Pixels Per Inch, that does not necessarily correspond with the pixel size of the screen. Since I have relatively small pixels, the documents are displayed very small.
    *Is there any way that I can configure my OS or these programs in such a way that they will display "actual size" properly?*
    I figure that if "preview" can do it, other Apple programs, like iWork, should be able to do the same.
    Thanks for your help!

    The terms "actual size" and "100%" are misnomers. To give an example, if you open an image in Preview and choose "actual size", it will display your image at 1 pixel on the screen per 1 pixel of image. The size of the image you see on your screen will be different depending on the resolution and size of your screen. It does not vary with the resolution of your printer or the dimensions of the paper you have chosen or any other printer settings. The size you see on the screen has nothing to do with the size of your printout. "Actual size" is not really "actual size", as you have discovered.
    Turn on the rulers that are built into Pages. They are not "actual size" either but they'll show what the size will be for the paper size you have chosen.
    Message was edited by: Badunit

  • How can I print a pdf in the actual size with a page border?

    How can I print a pdf in the actual size with a page border? (2 pages per sheet preferred)
    I usually print pdfs of books at a copy shop and they turn out fine.
    The problem comes when I try to print the same books at home.
    I use Adobe Acrobat X with the same settings: "multiple pages per sheet" (2x1) and page border. But the pages are slightly shrunken when printed. I think this is because my printer can't print as closely to the margins. Still, two pages should be able to fit on one sheet in actual size. Are there any layout settings that I can play with to find a better fit, besides portrait and landscape?
    If I select page scaling "none," I'm able to print the pdf in actual size, one page per sheet. But there's no option to add a page border.

    I have a test with some questions (multiple choice, FIB, matching, etc). I have just one button to submit all the answers, and after submiting the student can see his score and review the test to know where he failed. He can't answer again. However, he can change the answer multiple times before submiting.
    "if i turn on success/failure captions the student will see them while answering" - before submitting
    "if i turn them off he wont know what's the right answer" - after submitting
    My results page is the default. I didn't use any variable. When i go to the results page after reviewing the test all the entry boxes are "wrong".

  • I'm using FF for Mac 3.6.13 and everytime I open a new window or tab the image of what I see is tiny which requires me to click Command + to enlarge it. The actual page is normal size, but its the image of the page that opens tiny.

    I'm using FF for Mac 3.6.13 and every time I open a new window or tab the image of what I see is tiny which then requires me to click Command + to enlarge it about 4 or 5 times. The actual page is normal size, but its the image (what I see) of the page that is tiny.

    Thanks but Command 0 on a Mac only makes a temporary change to that one page. The link you provided doesn't show how to make a permanent change. Do you know how to permanently change this so I don't have to do it to every new page?
    Thank you.

  • How to display a page at 100% size?

    When I put the zoom at 100%, the page appears much smaller than real. My monitor is a 24" 1920x1200 pixels with 0.27 mm pixel size (that is 94 dpi)
    I suppose there has to be some way to tell illustrator my screen has 94 dpi for it to display pages at the correct size, but I can't locate it.
    In Adobe Photoshop this option is at Preferences/Units and Rulers but where is in Illustrator?

    When you set in Photoshop "preferences/Units and rulers/Screen resolution" (I'm translating from my spanish menus, so it can be slightly different in english), you are telling the program what is the size of the pixels in your screen. This is enough for the computer to know how to display an image at the real size. If you make a DIN A4 document at 300 dpi in Photoshop, and you have set the mentioned parameter correctly, when you choose "View/Print size", you obtain in your screen a view of the document at the size it is supposed to be printed (so the document will occupy in the screen exactly 29,7 x 21 cm). Note this is different from 100% view (or "Real Pixels"). The fact this parameter is under "Preset resolutions for new documents" is a bit confusing, but it affects how you see any document at Print size, not only the new documents and is totally different from "Print resolution" (but depends on it). You can change the print resolution of any old document at "Image/Image Size..." but you can't change "its" screen resolution because this is a parameter of your computer screen, not of your document.
    If you want to obtain the same effect in Microsoft Word, you have to go to "Control Panel/Screen/Configuration/Advanced Options/General/Dots per Inch Configuration" and this parameter will affect Microsoft Word. When you set the zoom lever at 100% in Word, again you will obtain  in your screen a view of the document at the size it is supposed to be printed.
    In Corel Draw, the corresponding parameter is at "Tools/Options/tool Box/Zoom Tool/Calibrate rulers...". There you can set the parameter numerically or you can use a set of on screen rulers to calibrate it. So when you set the zoom lever at 100%, again you will obtain in your screen a view of the document at the size it is supposed to be printed.
    Notice you're working with vectors in Corel DRaw and Word (well, vector pictograms of letters or as we all know them: fonts) but you are working with bitmaps in Photoshop. That's why the 100% zoom is different in Photoshop than in the other programs (including Illustrator).  and that's also why Photoshop has the Print size option. In the other programs, Print size and 100% would be the same but not in a bitmap program.
    If you take a look in your monitor user manual you most likely will find a page of specifications where it tells you the dot size. This parameter can vary in CRT monitors that raster the image on a phosphor screen but is fixed in LCD monitors that have a fixed led matrix. If you don't have the manual or have a CRT monitor you can calculate the parameter by measuring the display size horizontally  (from leftmost to rightmost displayed pixel) and dividing it by your screen resolution (the number of horizontal pixels).
    In my User manual it says the dot size is 0.27 mm, that means 94 dpi (25.4 mm in an inch divided by 0.27). Or, in case I would have lost the manual, I would just measured the scren width and obtained 518.5 mm that divided by 1920 pixels horizontal resolution gives a result of 0.27 mm per pixel.
    So, my question is ¿Is there some way of setting this parameter in Illustrator?

  • Why does the view window all of a sudden expand the content of the page I am viewing so that I have to go to "view" and click actual size??

    Why does the view window all of a sudden expand the content of the page I am viewing so that I have to go to "view" and click actual size??
    Then a few minutes later, it goes back to expanded again, it is driving me crazy.  how can I stop this????
    Thanks for any help.

    There could be a number of reasons, first thing to check is if you are clicking Command + or Command -. The Command 0 keystrokes restore Safari to the actual size. You can also reset Safari by Safari - Reset.

  • "actual size" isn't in Pages

    In pages, when I view "actual size" I get about 75% on the monitor (measuring the rulers). Can this be calibrated? Thanks.

    Actually size isn't actual size anywhere in computing devices.
    Nobody has done it yet but what is needed is a system file that calculates real world dimensions from the set resolution of the device screen and then adjust the UI accordingly.
    Apple could lead the pack here and should because it has extremely high resolution monitors on the iMac 27" which are causing the UI in Finder to be ridiculously small.
    Peter

  • Cannot print actual size when choosing several pages per paper

    I'm using Adobe Reader XI and trying to print a pdf (exported from InDesign)´where each page is in A5 format. I want to print two A5 pages for each A4 paper. However, when I click the button Several (or similar, I'm using Swedish version) there is a fixed 25 mm margin around each A5 page so that the pages are much reduced on the printout. I'd like to print actual size, and I think this was possible in a previous version. If I print one A5 per A4 paper I can print the actual size. I tried the button Print Format (equiv.) but the margins are fixed and cannot be changed. Awkward. Thanks for help or explanation why this is so.

    I have a little more information. I turned on "single hairline" border and as you can see, it's converting my square pages into "US Letter" pages BEFORE applying them two-to-a-page. So it's using my selection of "Paper Size" as both the source and destination paper size, rather than just the destination size, because my source is obviously 12x12 square (confirmed by looking at page properties in preview). Apple, please fix this

Maybe you are looking for

  • Can't open Nikon D80 nef (raw) files in Editor

    I installed the 3.7 plugin and I now am able to view my files in the organizer but as soon as I try to edit them I get an error message in editor (my copy is in french but loosely translated it says it does not recognize the file) I believe I followe

  • Unable to send Asynchronus message to BPM from ABAP Object in ECC 700

    Friends,I am trying to send a aysnchronus to BPM from ECC. I have done the following: Implemented Note 1043195 Scheduled the SAP_SOAP_RUNTIME_MANAGEMENT Jobs Created consumer proxy/logical port Tried to send message to BOM using proxy classes. Issue

  • DO NOT UPGRADE APPLE IPAD SOFTWARE !!

    This is a warning ! Do not accept to upgrade the IPod software through Itune as suggested. The upgrade has a high chance to fail and then you will be asked to go through a restore process and in doing so it will erase all the applications you purchas

  • Asha 201 Mail app problem

    The mail app on my asha 201 doesnt work,how can i resolve it,coz wen i open it,it says conflicting apps Moderator's note: We provided a more topic-related subject as the post was moved to the appropriate board. 

  • HT201250 How can you back up os 10.5.8?

    I'm wanting to back up my iMac before I add 10.6 on it. All the external back ups require 10.6 & up. So, how can you back it up? My computer already has Time Machine on it. Thanks!