PDF preview: incorrect page count

Hi there
I've noticed since I've upgraded to CS5 that my PDF previews in Bridge do not always show the correct number of pages. It has happened that a four-page PDF displayed only the first two pages, and a single-page PDF showed up as having two pages (the second page preview being the same as the first).
Any ideas on why this might be happening and how to fix it? I've tried refreshing the display.

> Any ideas on why this might be happening and how to fix it? I've tried
> refreshing the display.
Select a file that has incorrect page numbers, with right mouse click choose purge cache for selection and see if this solves the problem.
If so go to the menu tools/cache/purge cache for folder to refresh the cache for the whole foldercontent.
PS
This is the reply i send using email 4 hours earlier but there seems some delay, it is likely this message will appear a second time when retrieved from the digital labyrinth

Similar Messages

  • Parsing later version PDF documents for page count

    We send a large number of contracts in PDF format to an EDI application and need to know the page count in advance. We currently use a perl script to parse the PDF files for the following:
    1 0 obj
    <<
    /Type /Pages
    /Kids
    [ 13 0 R
    16 0 R
    /Count 2
    >>
    endobj
    This is the format of the PDF-1.3 documents. Unfortunately, the syntax is different for PDF-1.4,1.5,and 1.6.:
    obj<</Metadata 21 0 R/Outlines 27 0 R/Pages 28
    0R/Type/Catalog>>endobj35 0
    Is it possible to parse the page count from these versions?

    Actually, the fact that your parser EVER WORKED on ANY PDF files is amazing - since the fragment you posted is actually quite unusual for any version of PDF.
    The correct way for you to solve this problem is to get a PDF parser (there are native Perl ones such as Text::PDF) and use that gather the information you need.

  • How to add page count of PDF to the file name?

    I need help with an applescript that can look at a pdf, determine the page count in file and then add that value to the end of the file name in front of the .pdf
    ex.
    original name "map with pages4c.pdf"
    renamed "map with pages4c_48.pdf"
    Any help would be appreciated or suggestions on how this could be done.
    Thanks,
    John

    Hello
    That's quite simple.
    Just replace this chunk of code -
    tell application "Finder"
    set n to f's name
    set f's name to (n's text 1 thru -5) & "_" & p & ".pdf"
    end tell
    with -
    if 10 > p then set p to "0" & p
    tell application "Finder"
    set n to f's name
    set f's name to (n's text 1 thru -5) & "_" & p & ".pdf"
    end tell
    By the way, if there are 10000 files in directory tree, I'm afraid Finder is too slow to get files list. In order to avoid Apple Events timeout error, at least, replace this line -
    tell o to run
    with -
    with timeout of 3600 seconds
    tell o to run
    end timeout
    Or try the following script, which employs find(1) instead of Finder to get files list.
    All the best,
    Hiroto
    --SCRIPT3
    on run
    --main((choose folder with multiple selections allowed) as list)
    main((choose folder) as list)
    end run
    on open aa
    main(aa)
    end open
    on main(aa)
    (* list aa : list of folder aliases *)
    script o
    property ff : {}
    -- confirmation for safety
    set AppleScript's text item delimiters to {ASCII character 0}
    set aa to (aa as Unicode text)'s text items
    set AppleScript's text item delimiters to {""}
    set aa to (choose from list aa default items aa ¬
    with prompt ("You're renaming pdf files in following folder tree(s).") ¬
    with multiple selections allowed)
    if aa = false then error number -128
    -- process each folder
    set k to 0
    repeat with a in aa
    set a to a as alias
    -- get pdf files' POSIX path list (= ff)
    set ff to {}
    set sh to "find " & quoted form of POSIX path of a & " -type f -name \"*.pdf\" -print"
    try
    set t to (do shell script sh)
    on error
    set t to ""
    end try
    set px to count t's paragraphs
    set p0 to 1
    repeat -- in order to avoid stack overflow in getting large number of paragraphs at once
    set p1 to p0 + 3500
    if p1 ≥ px then set p1 to -1
    set ff to my ff & t's paragraphs p0 thru p1
    if p1 = -1 then exit repeat
    set p0 to p1 + 1
    end repeat
    if ff = {""} then set ff to {}
    -- process each pdf file
    repeat with f in my ff
    set f to f as POSIX file as alias
    tell application "Adobe Acrobat 7.0 Professional"
    --open f
    open f with invisible
    tell document 1
    set p to count pages
    close
    end tell
    end tell
    if 10 > p then set p to "0" & p
    tell application "Finder"
    set n to f's name
    set f's name to (n's text 1 thru -5) & "_" & p & ".pdf"
    end tell
    set k to k + 1
    end repeat
    end repeat
    -- decent notice
    tell application (path to frontmost application as string)
    display dialog ("Total of " & k & " pdf file(s) renamed successfully.") ¬
    with icon 1 giving up after 5
    end tell
    end script
    with timeout of 3600 seconds -- just in case
    tell o to run
    end timeout
    end main
    --END OF SCRIPT3
    Message was edited by: Hiroto (fixed typos)

  • Adobe Pro Adds to Page Count When Converting

    Hi all,
    I am working on a client's document and ran into an issue with pdf conversion. I have the latest edition of Adobe Pro and I'm working on Word 2013. The document is very long (about 695 pages single spaced) and has about 2,000 footnotes. When I convert the Word doc to pdf using the Acrobat icon on the ribbon or the Save As tool, the pdf has a page count that is several pages longer than the original. This is a problem because the publisher's page limit is 700, and the pdf goes over that. 
    I was able to find a workaround by using the Print to PDF function, but it seems that, when using this function, I am unable to create bookmarks and a clickable TOC (I'm using Word's Heading 1, Heading 2, etc. to do both).
    I'm looking for a solution where I can retain the same page count as the original document but also have the bookmarks and clickable TOC. Any ideas? I welcome your feedback, and thank you in advance for your time. 

    Hi cheech1981,
    You are posting on acrobat.com online service forums.
    Kindly post this query in Acrobat forums:Acrobat
    Regards,
    Florence

  • How to determine the page count of the front document (pdf-Preview) with applescript?

    Hello, I'm a beinnger apple scripter, and I have 2 questions. First, im trying to find the code to generate a page count for the front document of preview. I tried something like this:
    choose file with prompt "Count the number of pages in this PDF file:" without invisibles
    do shell script "/usr/bin/mdls -name kMDItemNumberOfPages " & quoted form of POSIX path of result & " | /usr/bin/grep -o '[0-9]\\+$'"
    But I dont want to have to choose a file with the prompt, and Im not sure how to get the path or POSIX path of an open pdf that is the front document in prievew to then use that directory to select the file to run the shell script on. This is one step in a much larger sequence of automator/apple script commands for large print jobs.
    The large scale view is:
    1. seleting a group .musx Finale 2014 files and creating pdfs of all the documents
         -Achieved with Automator stuff: [Get selected finder items] [open finder items with Finale 2014] [run applescript to convert to pdf all the open files] (which I have working but without a proper repeat condition)
    2. sorting those those exports into even/odd groups
    3. making the even pages 2 up with a create booklet plugin
    3. combinging even/odd group pdfs in their respective folders
    4. sending the 2 up evens to 1 printer, and the singes to another printer.
    but at this stage in the code/automator this is what i'll need to be doing:
    1. Several pdf documents will be open and I need to determine the page count of the front document.
    2. With that result I need to determine if the pagecount is even or odd.
    3. If its even, I need to save as pdf in a file folder /desktop/PDF Export/Doubles
         - if its odd, I need to save as pdf pages from 1 to (pageCount -1) to /desktop/PDF Export/Doubles, and pages (pageCount) to (pageCount) to desktop/PDF Export/Singles. (example: A 5 page pdf will send pages 1-4 to folder "Doubles", and pages from 5 to 5 to Singles, A 1 page pdf will only send a copy to the folder "Singles." A 2 page pdf will send both pages to "doubles"
    4. once the even/odd pages have had pdfs made in the either or both of the folders, Im going to close the document and repeat for all other open pdfs.
    Which also brings me to my 2nd repeat condition question: how can I repeat (print, save as pdf, close) commands for open files and end the script once all files are closed? This can help me both at this stage, as well the coding stage before in creating the pdfs from open Finale/sibelius .sib/.musx files
    would it be something like this?:
    If front document exists
    try
    tell application "preview"
    <bla bla>
    end try
    end tell
    At stage 1 of the large scale i've gotten the files to export pdfs and close multiple files, but if i say "repeat 4 times" and i have 3 files it can do those commands but it gets stuck trying to repeat the code one more time. I need the repeat amount x to be the # of items in selection from the the original finder window.
    Thanks for the help!

    The following AppleScript will get the POSIX path and filename of the current PDF file. It will just return the integer value for page count. Note: The path retrieved is the actual path to the PDF file, unless it is on the Desktop. In the latter case, the path will be ~/Library/Containers/com.apple.Preview/Data/Desktop/filename.pdf.
    The script assumes that the following folders exist, otherwise you will need a try block to test for their presence.
    The AppleScript dictionary for Preview does not provide a page dictionary entry, that would make a repeat loop and page range possible for saving individual page ranges.
    set pdfDoubles to POSIX path of ((path to desktop) & "PDF Export" & Doubles)
    set pdfSingles to POSIX path of ((path to desktop) & "PDF Export" & Singles)
    tell application "Preview"
      -- gets quoted POSIX path and filename
              set pdfFile to (get path of front document)
              set pdfName to (get name of front document)
      log pdfName
              set cmdArg to "/usr/bin/mdls -name kMDItemNumberOfPages " & pdfFile ¬
                        & " | egrep -o \"(\\d+)\""
              set pageCnt to do shell script cmdArg
      display dialog pageCnt
              if pageCnt mod 2 is 0 then
      -- even
      -- save pdfName in pdfDoubles
              else
      -- save pdfName in pdfDoubles
      -- save individual pages in pdfSingles
              end if
    end tell

  • Adobe PDF Portfolio - Preview Mode Displaying Incorrect Pages

    I have created a PDF portfolio using the “Grid” template in Adobe Acrobat XI Pro. The Portfolio contains three pdf files. I am getting the following problem when I open the pdf Portfolio in Adobe Reader X and XI and Adobe Acrobat Pro XI.
    Open the PDF portfolio
    Click on pdf3
    Preview mode displays the correct document and pages.
    Close the preview of pdf3
    Click on pdf2
    Preview mode displays pages from pdf3,not pdf2 (see screenshot below).
    Some observations:
    If pdf1 has two pages, and pdf2 has ten pages, pdf2’s preview contains pdf 1 (pages 1-2)  and then pdf2 (pages 3-10).  
    If I continue to open pdfs the preview contains pages from all the pdfs I have opened in the portfolio (this depends on how many pages the document I am currently previewing has). It is not just caching the last pdf opened. 
    Preview mode always displays the correct NUMBER of pages (i.e., if there are ten pages in a pdf, there will be ten pages in the preview. They will just be the wrong pages).
    Turning off local page cache (preferences > page display) does not fix the problem.
    Adobe Reader is up-to-date and Flash is up-to-date. I have replicated the problem on different computers, and in Adobe Reader X and XI, and Pro XI. I have also created muliple pdf portfolios from scratch to confirm the pdf portfolio itself wasn't corrupt.
    Does anyone have an idea what is happening? Users are getting very confused when their preview shows them a completely different document.
    Thanks for any help

    We have the same problem. Everything's up to date. Adobe needs to address this issue!! The portfolio feature is a great idea, but this glitch basically ruins it. If you come by this page with the same problem, make sure you leave a reply. Maybe Adobe will actually pay attention if there are enough complaints.

  • How can I get a total page count of a PDF before placing every page in the PDF?

    Before the [long] spiel, I'm using javascript in InDesign CS3.
    I'd like to create a script that places a multiPage PDF in any number of different impositions. (saddle stitch, 4up signatures, 16up signatures etc.)
    I've easily created a script that iterates through a PDF and places it into a new document as (4,1|2,3), (8,5|6,7) etc, which works for printing in duplex, folding each page in half, and gluing the resulting spines to make a simple thick book (for PDFs with more than, say, 64 pages).
    However, the next step is to re-write the script to create a saddle stitch document (16,1|2,15), (14,3|4,13) ... (10,7|8,9). For this I need to know how many pages there are in the PDF before I start placing the PDF pages, and then making the new document [int((PDFpages+3)/4)] pages long.
    Is there a simple way to get the count of PDFpages without going through a loop and placing the next page from the PDF until the placed page number equals the first page number?
    This way seems wasteful:
    var totPDFPages = 1;
    app.pdfPlacePreferences.pageNumber = totPDFPages;
    myPDFPage = sheetFront.place(File(srcPDF), [0,0])[0];
    var pdfFirstPage = myPDFPage.pdfAttributes.pageNumber;
    while (doneCounting == false) {
    totPDFPages += 1;app.pdfPlacePreferences.pageNumber = totPDFPages;
    myPDFPage = sheetFront.place(File(srcPDF), [0,0])[0];
    if (myPDFPage.pdfAttributes.pageNumber == pdfFirstPage) {
    totPDFPages -=1;
    doneCounting = true;
    alert("PDF has " + totPDFPages + " pages!");exit();
    myPDFPage.remove();
    NB. Javascript above *hasn't* been run, but should look similar once debugged.
    The only thing I've though of to relieve the sheer duplication of placing the PDF twice (once for the count, and once for the imposition), is to create an array of impoPages[counter]=myPDFPage, and then shuffle the pages referenced by the array to the correct sheet and position.
    It'd be much easier to be able to assign pageCount = File(srcPDF).pageCount !!!
    Thanks for any help/tips or even a simple "What are you smoking, man!?"
    Cheers,
    Jezz

    this will get almost all pdf pages count.
    jxswm
    function getPDFPageCount(f){
      if(f.alias){f = f.resolve();}
      if(f == null){return -1;}
      if(f.hidden){f.hidden = false;}
      if(f.readonly){f.readonly = false;}
      f = new File(f.fsName);
      f.encoding = "Binary";
      if(!f.open("r","TEXT","R*ch")){return -1;}
      f.seek(0, 0); var str = f.read(); f.close();
      if(!str){return -1;}
      //f = new File(Folder.temp+"/123.TXT");
      //writeFile(f, str.toSource()); f.execute();
      var ix, _ix, lim, ps;
      ix = str.indexOf("/N ");
      if(ix == -1){
        var src = str.toSource();
        _ix = src.indexOf("<< /Type /Pages /Kids [");
        if(_ix == -1){
          ps = src.match(/<<\/Count (\d+)\/Type\/Pages\/Kids\[/);
          if(ps == null){
            ps = src.match(/obj <<\\n\/Type \/Pages\\n\/Count (\d+)\\n\/Kids \[/);
            if(ps == null){
              ps = src.match(/obj\\n<<\\n\/Type \/Pages\\n\/Kids \[.+\]\\n\/Count (\d+)\\n\//);
              if(ps == null){return -1;}
              lim = parseInt(ps[1]);
              if(isNaN(lim)){return -1;}
              return lim;
            lim = parseInt(ps[1]);
            if(isNaN(lim)){return -1;}
            return lim;
          lim = parseInt(ps[1]);
          if(isNaN(lim)){return -1;}
          return lim;
        ix = src.indexOf("] /Count ", _ix);
        if(ix == -1){return -1;}
        _ix = src.indexOf(">>", ix);
        if(_ix == -1){return -1;}
        lim = parseInt(src.substring(ix+9, _ix));
        if(isNaN(lim)){return -1;}
        return lim;
      _ix = str.indexOf("/T", ix);
      if(_ix == -1){
        ps = str.match(/<<\/Count (\d+)\/Type\/Pages\/Kids\[/);
        if(ps == null){return -1;}
        lim = parseInt(ps[1]);
        if(isNaN(lim)){return -1;}
        return lim;
      lim = parseInt(str.substring(ix+3, _ix));
      if(isNaN(lim)){return -1;}
      return lim;

  • Getting Page Count for a Multi-Page PDF file using Illustrator script?

    Does anyone know how to get the page count of a multi page PDF file?  I know you can then open each page using the PDFFileOptions (pagetoopen).  But I need to know up front how many pages there are to loop thru to open each page and process each page.
    Any Ideas?

    This script i did for photoshop:
    OK so lets do it working on WIN and MAC without any shell script.
    This solution is not the best but its working.
    I used Try catch to solve it.
    Only issue is that you should at least somehow know how many pages you expect in pdf.. this mean if you are working with books or flyers...
    Then set the maxPagesCount to that number.
    I am working with pdfs with max 20pages.. so i start open the 20 then 19 then 18 and when i am success i know the amount of pages.
    Its not the quicker way but its usable.
    var maxPagesCount = 20;
    var actPagesCount = maxPagesCount;
    var opts1 = new PDFOpenOptions();
    opts1.usePageNumber = true;
    opts1.antiAlias = true;
    opts1.bitsPerChannel = BitsPerChannelType.EIGHT;
    opts1.resolution = 10; //it will load faster the test page
    opts1.suppressWarnings = true;
    opts1.cropPage = CropToType.MEDIABOX;
    myFunction = function () {
      try { 
          app.displayDialogs = DialogModes.NO;
          var fileList = openDialog();
          for (i = 0; i < fileList.length; i++) {
            actPagesCount = maxPagesCount;
            getPagesCount(fileList[i],maxPagesCount);
            alert(actPagesCount);
      } catch (exception) { 
        alert(exception);
    getPagesCount = function (checkFile, lastPageID) {
      try {          
        for (var checkPage = lastPageID; checkPage > 0; checkPage--) {
          opts1.page = checkPage;                    
          var docRef = open(checkFile, opts1, false);                  
          docRef.close(SaveOptions.DONOTSAVECHANGES);                  
          actPagesCount = lastPageID;                  
          return;                  
          checkPage=0;                              
      } catch (exception) {
        // Look for next page        
        checkPage--;        
        getPagesCount(checkFile,checkPage);

  • PDF Preview kicks out to Acrobat 7 and Body Pages goes blank

    Two problems, and I suspect they are related...
    I just purchased and installed Acrobat 7 Professional with Adobe Designer.
    FIRST--The PDF Preview in Designer automatically kicks the preview out to Acrobat 7 and does not preview in Designer. Why???
    SECOND--When I click back to Body Pages, for no reason after a little while the workspace goes blank (back to sheer white). It takes about 5 seconds for that to happen--and it happens inconsistently. It seems strange.
    Can anyone help???
    OS/ Windows XP sp2
    Gateway M675 with tons of power and RAM

    It's a rare thing indeed when you can answer your own posts.
    I did a "detect and repair" in Acrobat 7.0 Professional, which seemed to fix the problem.
    I had loaded Acrobat Reader 7 after the initial install of Acrobat 7.0 Professional, and am wondering if that didn't cause the problem somehow.
    Anyway, if anyone else has this problem, you might want to try the "detect and repair."
    Let's hope the problem is fixed for good. :-)

  • How to get Page Count of pdf in Document library in EventHandler

    Hi,
    How to get Page Count of pdf in Document library once uploaded has been done and i would like to update the page count value in document library column of the corresponding file.
    I should achieve it in Event handler.
    Which even should i use, either ItemAdded or "ItemUpdated "?
    Thanks & Regards
    Poomani Sankaran.

    Hello,
    If you are looking for file download or view count then event handler will not work. You need to enable the analytic report to your site. Once you enable it then you can see the report within a browser or you can also create custom webpart to show count
    of specific file.
    http://blogs.msdn.com/b/ecm/archive/2010/05/03/web-analytics-in-sharepoint-2010-insights-into-reports-and-metrics.aspx
    http://sharepoint.stackexchange.com/questions/34611/count-of-files-under-a-folder-in-a-document-library
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Getting fast PDF page count (without opening file)?

    I’ve got a menu with about 100 PDFs and for various
    reasons I’d like to display the page count for each. I could
    enter the page count by hand but that becomes a maintenance
    nightmare as the PDFs are updated and someone (myself included)
    will forget to update the count. Opening each PDF in an xtra to get
    the page count would be too slow for 100 documents . I’ve
    found a dll that claims to parse the PDF header and quickly count
    PDF pages which might work (we’re already using dllBinder for
    MAPI access) although I haven’t started experimenting with
    it. Has anyone tried something similar? Can I parse the header with
    lingo/Buddy API and avoid working with the dll black box?

    I would take an approach in between the extremes you listed.
    Consider
    this. Make a list of all the documents, and make an automated
    process
    using Impressario or something to get the total pages in all
    100
    documents. Save this list. It will take a bit to open and
    close all
    the docs, but it only need to be done once. From then on,
    compare to
    the saved list. Whenever a doc gets changed use your
    automated
    Impressario process to update the list.
    If the DLL route doesn't pan out, then that is how I would go
    about it.
    You;d still need to remember to update your list after every
    change,
    but at least it is an automatic process.

  • Get Page Count of PDF using Publication Post Processing Plugin

    Hi,
    I am using the publiching functionality of BOXI 3.1 to create a large volume of PDFs.  I have a report that I am publishing using a publication with a post processing plugin applied after distribution.  I need to get the total page count of the pdf and store this value in the database.  Becuase I am already using a post processing plugin after distribution, it would be ideal to extract it there...but I cannot figure out how to get the value at this point. 
    Currently we parse the actual binary pdf file, but I know that Crystal and BOXI know this total page count and some point in the processing cycle.  Does anyone know how to get at the total page count of each pdf/report instance?
    Thanks,
    Kristina

    I would post-process the PDF file as you're doing.
    The total page count isn't metadata - it's something computable from the report instance, that is lost after the PDF is generated.
    Trying to work with that would lead to a more complex workflow - i.e., schedule to report format, open the report instance using a reporting SDK, calculate the total page count, export using the reporting SDK to PDF, add the PDF to the publication artifact and remove the report instance, other steps I may have missed....
    Sincerely,
    Ted Ueda

  • PDF Page count question (not coding related)

    Vista has numerous types of details it can display and sort with (size, date modified, etc.).
    I found "pages" in that list but it doesn't seem to be intended for pdf files.
    Can windows (or another software solution) display the page count of individual pdf files when viewing a folder containing multiple pdf's?  If so, how do I get that rolling?
    Thanks.
    Jake

    CoachW:
    Welcome to the Apple Discussions. You're right, the minimum number of pages is 20, single or double sided. You will get 4 blank pages at the end. You can check it out by going thru the ordering process and after the book if finished assembling and you're at the next window, do the following to find and copy the pdf file that iPhoto creates to upload and print:
    How to Find the iPhoto Generated PDF File:
    1 - Start the ordering process and stop after the book has been assembled and you get to the Order pane where you select the cover color, copies, etc.
    2 - Go to the Finder and select the Go->Go to Folder menu item (CommandShiftG).
    3 - copy the following, “/private/var/tmp/folders.501/TemporaryItems/iPhoto” (for Panther the path is "/private/tmp/501/TemporaryItems/iPhoto“), and paste into the Go to Folder search box.
    4 - the iPhoto folder will be brought up. In it will be the PDF file that was generated by iPhoto. You can copy it (Option-drag) to the Desktop to review and/or save.
    Note: the iPhoto folder will not exist before you start the ordering process and is deleted after the order is completed or after you cancel the order and quit iPhoto.
    You can then cancel the operation if you're not happy with the result.

  • Multiple master pages, But only first master page is printed or is shown in pdf preview.

    Hi,
    I have 8 master pages in my adobe form, But when I see the PDF preview or print only the first master page is shown or printed. Can anyone please tell me how to print or pdf preview all the master pages. The contents in the master pages are different.
    Thanks in advance.

    Master pages are used a background for body pages (similar to a background image).
    You should put all your contents on separate body pages instead master pages.

  • PDF preview of iPhoto book shows image degradation

    For years I have made iPhoto books first designing pages with text and color imagery in InDesign, then exporting PDFs of the pages to iPhoto via Automator, and then placing the designed pages into blank pages of the iPhoto book. Prior to printing I preview the book by going to Preview in the print dialog box. The preview images have always been spot on regarding what the image quality of the finished book would be. Now I'm trying to make a large book incorporating both color and black and white images. These are elegant, black and white images that have been lovingly restored in Photoshop and feature full tonal ranges. They are TIFF images. Subsequent to making a small, trial run book, I discovered that if I kept the images as grayscale images, they printed too dark. AS a result of phone conversations with Apple and trying the Adobe discussion site, I found that if I resaved the BW images as RGB, the page PDFs I generated when exporting the pages out of InDesign reproduced the BW images perfectly. Likewise, throughout the process of assembling the new iPhoto book, when I placed the pages, the BW images looked gorgeous. However, just prior to uploading the book, I decided to preview the pages and generated a PDF preview in the print dialog box. Lo and behold, all the images show up noticeably different; the BW images lack good blacks--the dark areas seem distinctly muddy compared to the originals. Does anyone have a clue as to what is happening and how I might regain the original look? Thanks. I'm using iPhoto 11 with Snow Leopard on a new iMac.

    I don't think you're doing anything incorrectly. I think that the inside page is automatic in the printing process and is not included in the pdf file that is created. Only the cover and pages 1-20 or whatever are added to the pdf file.

Maybe you are looking for

  • I/O errors with some discs in XP with Boot Camp    Please help.

    I wasn't sure which forum to post this problem in. I've also asked this question in "Using your Intel-based iMac". It fits in a few categories, so I apologize if I've gotten it wrong. I tried to install a game (Last Half of Darkness, 2005) yesterday,

  • Pricing datede

    Hi Team, My requirement is for domestic customers  pricing date is order date or livery date but for inter company customers the delivery date should be GI date. with billing type F2 we will create inter company invoice and normal invoice ,for inter

  • XFI fatality platinum @ medusa headphones ?

    hi all?hope you can help, ok story so far ,having made my fingers bleed by having to install and uninstall the said card because of issues with it not being reconised it works ,now when in game mode its well rubbish to be honest i have medusa headpho

  • System usage per user

    Hi Security Experts, Our company have a SAP system version ECC 5.0 and right now we are making an analysis related to the quantity of users and the quality of the system usage per user, so the question here is if there's a way to know how much resour

  • Windows Media Player 9.0 for OS X

    This is more of a windows program-mac compatibility, rather than a mac program-windows compatibility (because we all know that everything apple makes is universally compatible, not so for Microsoft, which is why apple ROCKS!) but anyways...got a litt