Cropping error with picture book page type 2

Hi, I'm trying to layout my first book in iPhoto and am running into a problem with one particular page layout. Whenever I have two tall pictures on a page, iPhoto chops off a large part of the side of the photo. If I select "Fit Photo to Frame Size" the photo is shoved to the edge of the frame boundary and still doesn't show the missing part of the photo.
Has anybody else run into this problem before?
I'm using iPhoto 5.0.4 (263)
I have the same problem with both the classic picture book theme and the newer version.

Eric:
Welcome to the Apple Discussions. Are they both cropped to the recommended 4:3 book constrain? If they aren't that may be the reason. The frames are designed for 4:3 photos and will fill the frame precisely with them. If the photo is a different size one of the dimensions will suffer.

Similar Messages

  • I got 0x80070052 error with my books.

    I got 0x80070052 error with my books. With this error i can read books til page 40 or 50 and then i get the error file open failed. Please help*

    You will probably need to restore using Recovery Mode. You can read about it here.
    http://support.apple.com/kb/ht4097
    Or you can follow these Recovery Mode Instructions
    Disconnect the USB cable from the iPad, but leave the other end of the cable connected to your computer's USB port.
    Turn off iPad: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for iPad to turn off.
    If you cannot turn off iPad using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the iPad turns off, release the Sleep/Wake and Home buttons.
    While pressing and holding the Home button, reconnect the USB cable to iPad. When you reconnect the USB cable, iPad should power on.
    Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears you can release the Home button.
    If necessary, open iTunes. You should see the recovery mode alert that iTunes has detected an iPad in recovery mode.
    Use iTunes to restore iPad.

  • Ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    No on the book title, no problem there.
    The issue is: my book pages appear as on white paper, no background that resembles a open book and also no option to change fonts. The book was created in iBooks author, there was a problem going with the "Publish" menu route so I was instructed my Apple to "export" the file and submit that. I think that's the problem after reading that iBooks author is a hybrid epub file.
    Thanks for getting back to me.

  • Error with Portal JSP Page Upload

    i've run into a problem with trying to deploy custom JSP pages to Portal. basically, if i enable JSP page types for the Page Group, generate a simple page, download it using the Download JSP link, and then try to upload it again as a JAR or WAR via the JSP Source tab, even without modifying the page at all, i receive the following error:
    Unexpected error - User-Defined Exception (WWC-35000)
    Unexpected error - User-Defined Exception (WWC-35000)
    Path ID does not exist. (WWC-50001)
    i've tried logging in as ORCLADMIN in case it was a permissions thing, but that didn't help.
    anyone else experience this? any ideas?
    thanks,
    .rich

    i've run into a problem with trying to deploy custom JSP pages to Portal. basically, if i enable JSP page types for the Page Group, generate a simple page, download it using the Download JSP link, and then try to upload it again as a JAR or WAR via the JSP Source tab, even without modifying the page at all, i receive the following error:
    Unexpected error - User-Defined Exception (WWC-35000)
    Unexpected error - User-Defined Exception (WWC-35000)
    Path ID does not exist. (WWC-50001)
    i've tried logging in as ORCLADMIN in case it was a permissions thing, but that didn't help.
    anyone else experience this? any ideas?
    thanks,
    .rich

  • Error with illegal start of type

    Hi. I have a problem on illegal start of type at "public BookDetails findBook( String bookTitle ){" this sentence. Can you help me to solve it?
    rest of the class are able to compile.Left with this only...
    here is my class file:
    import java.util.Scanner;
    public class Book{
              private BookDetails[] details;
              public Book(){
              BookDetails[] details = new BookDetails[15];
              details[0] = new BookDetails("The Secret", "Rhonda Byrne", "0001", 10);
              details[1] = new BookDetails("Secrets of Self-Made Millionaires", "Adam Khoo", "0002", 10);
              details[2] = new BookDetails("An Illustrated Biography of the World's Most Successful Investor", "Warren Buffet", "0003", 15);
              details[3] = new BookDetails("How good do we have to be?", "Harold Kushner", "0004", 8);
              details[4] = new BookDetails("Half a Life", "V.S.Naipaul", "0005", 5);
              details[5] = new BookDetails("Subconscious", "Murphy McMahan", "0006", 6);
              details[6] = new BookDetails("The Road Less Travelled", "M. Scott Peck", "0007", 5);
              details[7] = new BookDetails("Stop the insanity!", "Susan Powter", "0008", 5);
              details[8] = new BookDetails("Business As Usual", "Anita Roddick", "0009", 6);
              details[9] = new BookDetails("Rich Kid, Smart Kid", "Robert Kiyosaki", "0010", 6);
              details[10] = new BookDetails("Secrets of the Millionaire Mind", "Harv Eker", "0011", 10);
              details[11] = new BookDetails("Where have all the leaders gone?", "Lee Iacocca", "0012", 15);
              details[12] = new BookDetails("If success is a game, these are the rules", "Cherie Carter", "0013", 8);
              details[13] = new BookDetails("Think Big", "Donald Trump", "0014", 15);
              details[14] = new BookDetails("Blink", "Malcolm Gladwell", "0015", 10);
              do{
                   Scanner input = new Scanner( System.in );
                   System.out.print( "Enter the title of the book.");
                   bookTitle = input.nextLine();
                   public BookDetails findBook( String bookTitle ){
                   int Book = details.length;
                   for( int i = 0; i < Book; i++ ){
                        if( details.getBookTitle().equalsIgnoreCase( bookTitle ))
                        return details[i];
                   System.out.println( "Book title : " + bookTitle + " found" + "\n"
                             + "Details for book title " + bookTitle + "\n"
                             + "Author : " + BookDetails.getAuthor() + "\n"
                             + "CatalogueNo : " + BookDetails.getCatalogueNo() + "\n"
                             + "Cost : $" + BookDetails.getCost());
                   System.out.println( "Proceed to rent? <Y/N> : ");
                   select = input.nextLine();
                   if ( select.equalsIgnoreCase( "Y" ))
                   System.out.print("Enter the name of customer : ");
                   na = input.nextLine();
                   System.out.print("Enter the address of customer : ");
                   add = input.nextLine();
                   System.out.print("Enter the phone number of customer : ");
                   phone = input.nextLine();
                   CustomerDetails person = new CustomerDetails( na, add );
                   System.out.println( "Printing out receipt for " + person.getName() + ".....");
                   System.out.println( "At address : " + person.getAddress() );
                   System.out.println( "Renting book title " + bookTitle + " for $" + BookDetails.getCost());
                   System.out.println( "Serving next customer....." );
                   if ( select.equalsIgnoreCase( "N" ))
                   System.out.println( "Serving next customer....." );
                   }//for
                   System.out.println( "Book title: " + bookTitle + " not found" );
                   System.out.println( bookTitle + " not available" + "\n"
                                  + "Serving next customer....." );
                   return null;
                   }//class
              }while( "E" );

    ok. Now is like this:
    import java.util.Scanner;
    public class Book{
              String bookTitle, na, add, phone, select;
              BookDetails bookDetails = new BookDetails();
              do{
                   Scanner input = new Scanner( System.in );
              do{
                   System.out.print( "Enter the title of the book.");
                   bookTitle = input.nextLine();
                   BookDetails = BookDetails.findBook(book Title);
              }while(Book == null);
                   System.out.println( "Book title : " + bookTitle + " found" + "\n"
                             + "Details for book title " + bookTitle + "\n"
                             + "Author : " + BookDetails.getAuthor() + "\n"
                             + "CatalogueNo : " + BookDetails.getCatalogueNo() + "\n"
                             + "Cost : $" + BookDetails.getCost());
                   System.out.println( "Proceed to rent? <Y/N> : ");
                   select = input.nextLine();
                   if ( select.equalsIgnoreCase( "Y" ))
                   System.out.print("Enter the name of customer : ");
                   na = input.nextLine();
                   System.out.print("Enter the address of customer : ");
                   add = input.nextLine();
                   System.out.print("Enter the phone number of customer : ");
                   phone = input.nextLine();
                   CustomerDetails person = new CustomerDetails( na, add );
                   System.out.println( "Printing out receipt for " + person.getName() + ".....");
                   System.out.println( "At address : " + person.getAddress() );
                   System.out.println( "Renting book title " + bookTitle + " for $" + BookDetails.getCost());
                   System.out.println( "Serving next customer....." );
                   if ( select.equalsIgnoreCase( "N" ))
                   System.out.println( "Serving next customer....." );
                   }//class
              }while( "E" );
    But, there's still error saying illegal start of type at "do{"

  • Problem with pictures in pages 5 and epub

    Hello,
    I have been using pages 09 to make epubs for the last 6 months with happy results.
    My new macbook pro came in the mail and I have some problems.
    I have figured out how to do all the text formatting, including titles/chapter names, etc. on pages 5.
    My problems is with pictures.
    In the past, I would click view, then show invisibles, so I could see where the chapter marks are to insert my picture in a particular spot.
    The old pages, was great, and the pic showed up right where I wanted it, and that was the end of the story.
    New Pages, just throws the picture on the page and then forces me to select a variety of options as far as telling it how I want the picture to display.
    This would be no big deal if I only had one or two pics to deal with, but I have tons of pics that need to be inserted in pages and exported to epub.
    Does anyone know an easy way to tell pages 5 to just put the picture where I am telling it!
    Any advice would be appreciated.
    Also, one negative on pages 09 is that you could only have a certain amount of pics/chapter, otherwise they would not show up in the exported epub.
    Anyone know if pages 5 suffers from the same absurdity or if you can insert as many pics as you want/chapter.

    Ok, I understand what you guys are saying.
    A related issue.
    I had been using pages 4.1.
    When I would take a pic plucked from a pdf and put it into pages and then exported to epub, it compressed the file about 80% like it should.
    I ditched pages 5 and went to pages 4.3 (which looked identical to my old pages 4.1.
    For whatever reason when I take the same pdf pic and put it into pages and export to epub, instead of compressing by 80%, it is actually expanding the file by 700%.
    The original image is identical in both cases, but pages 4.3 doesn't compress upon export to epub.  
    Any suggestions?

  • VBA Code error with Adobe Acrobat 10 Type Library

    Hi,
    I have some code I created in Word VBA to combine several separate PDFs into a single PDF.  The code works fine with the Adobe Acrobat 9.0 Type Library and Adobe Reader 9.0 installed.
    But, with the Adobe Acrobat 10 Type Library and Adobe Reader 10 installed, the code fails at the marked code below.  Any suggestions??
        Dim acrobatApp As Acrobat.acroApp
        Set acrobatApp = CreateObject("AcroExch.App")
        Dim mainPDF As Acrobat.AcroPDDoc
        Set mainPDF = CreateObject("AcroExch.PDDoc")  ****THIS IS WHERE THE CODE STOPS WITH A "TYPE MISMATCH" ERROR****
        Dim nextPage As Acrobat.AcroPDDoc
        Set nextPage = CreateObject("AcroExch.PDDoc")
        Dim numPages As Integer
        'Loop through all selected VLS, and add each one to the end of the main PDF
        For i = 0 To lstSelected.ListCount - 1
            mainPDF.Open CurDir & "\" & Replace(ThisDocument.Name, ".doc", "") & ".pdf"
            numPages = mainPDF.GetNumPages
            nextPage.Open lstSelected.List(i)
            If mainPDF.InsertPages(numPages - 1, nextPage, 0, nextPage.GetNumPages, True) = False Then
                MsgBox "Cannot insert pages"
            End If
            If mainPDF.Save(PDSaveFull, CurDir & "\" & Replace(ThisDocument.Name, ".doc", "") & ".pdf") = False Then
                MsgBox "Cannot save"
            End If
            'MsgBox lstSelected.List(i)
            nextPage.Close
        Next i

    What if you start with a really simple VBA example? Take a look at this:
    Private Sub CommandButton1_Click()
        Dim AcroApp As Acrobat.CAcroApp
        Dim theDocument As Acrobat.CAcroPDDoc
        Dim bm As Acrobat.AcroPDBookmark
        Dim thePath As String
        thePath = "c:\temp\test.pdf"
        Set AcroApp = CreateObject("AcroExch.App")
        Set theDocument = CreateObject("AcroExch.PDDoc")
        theDocument.Open (thePath)
        MsgBox "Number of pages: " & theDocument.GetNumPages
        theDocument.Close
        AcroApp.Exit
        Set AcroApp = Nothing
        Set theDocument = Nothing
        Set bm = Nothing
        MsgBox "Done"
    End Sub
    If this still does not work, I would reinstall Acrobat to make sure that
    the TLB is not corrupt.
    Karl Heinz Kremer
    PDF Acrobatics Without a Net
    [email protected]
    http://www.khkonsulting.com

  • Printing error with odd/even pages

    Apologies if this is the wrong group, I looked for a more
    appropriate one
    but there doesn't seem to be one on this server. If there's a
    better place
    to ask this question, please let me know.
    Anyhow, I'm using Acrobat Reader, latest version (I updated
    off the Adobe
    site after first noticing the error just to be sure), and I'm
    having a
    couple of serious bugs when it comes to printing odd-only or
    even-only pages
    of a multi-page document. (I don't have one of those snazzy
    re-feeder
    printers that can do both sides, so if I want to print
    double-sided I have
    to do first one then the other.) At any rate, the problems
    are thus: on a
    document which has an odd number of pages, if I tell it to
    print all
    odd-numbered pages, it will invariably skip the first page.
    This one's not
    that serious, as I can just manually print page 1 after the
    fact. The
    really annoying problem occurs when I try to print the
    even-numbered pages.
    What happens in this case is it prints the first page (i.e.
    Page 2) *twice*.
    Once on the back of page 1 and again on the back of page 3.
    Needless to
    say, I now have to throw one of them out and redo it. (I've
    taken to
    printing the even-pages first now, so I can use the backside
    of that extra
    page 2 for scrap paper, whereas previously the extra sheet
    was basically
    useless as it was printed on both sides.) The bug does not
    seem to occur
    with documents that have an even number of pages. Only those
    with an odd
    number. Doesn't matter if I choose back-to-front or
    front-to-back. Doesn't
    matter what printer I use, I've tried 3 different ones (and
    made sure I had
    the latest drivers for each) and it happens in every case.
    I'm guessing
    that there's some confusion in the software as to the number
    of pages it's
    supposed to print. If a document has an odd number of pages,
    there's one
    more odd-numbered page than there are even-numbered pages,
    and it's getting
    it backwards, printing one more even-numbered page and one
    less odd-numbered
    page. Anyhow, it's really annoying, and a waste of paper and
    ink as well.
    Any ideas how to avoid this? (Seriously considering editing
    the documents
    and adding one blank page to the end of every document with
    an odd number,
    though it seems like that shouldn't be necessary...)

    Thank you for your response. These forums are specific to the
    Acrobat.com website and its set of hosted services, and do not
    cover the Acrobat family of desktop products. Please visit the
    following forums for any questions related to the Acrobat family of
    desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • Need Help With ePub Book Page Numbering

    I'm not understanding how to get the page numbers set in sequential order for an ePub.
    I've created a Book with 10 sections (all independent files).
    But, as you can see in the attached image, the file numbers do not progress from one "section" to another. This is messing up the TOC and the ePub navigation.
    What am I doing incorrectly?

    Book and Page Numbering Options were set correctly to:
    Continue from previous document
    Automatically Update Page & Section Numbers
    What I missed was setting Document Numbering Options to:
    Start Section >> Auto Page Numbering
    Document Chapter Numbering >> AutoChapter Numbering
    Each of my ten Book documents were defaulting to Start Page Numbering at: 1 which was causing each document/section to begin at 1.

  • Safari (only?) errors with Apple Discussion Pages

    I have been having connection problems with my ISP -- intermittent inability to load web pages or Widget updates, etc., or just very slow loading. It is extremely intermittent: over the space of an hour or two it can go from full speed cable to near zero to flat out dead.
    Complicating things greatly is that sometimes, during the slow-but-not-dead periods, Safari refuses to load Apple Discussions pages at all, displaying error messages with or without an number number, but always saying the connection was lost. Sometimes this is after a minute or so of trying to load the page, which I attribute to the slowness of the connection, but other times it is immediate. When this happens, retry or going to another page with a link back to the first page & trying that continues to get the error immediately.
    IOW, Safari won't even try to reload the page. I have tried emptying the cache, but it doesn't help. Other pages will load, but slowly.
    At this point, I can get the page to load by copying the URL into Internet Explorer, so I know the page is available & the connection, although slow, is capable of sending the page to my computer.
    Does anyone have an explanation for this behavior? Or better yet, a way to convince Safari to try to reload the page?

    bump

  • Encoding error with Itunes book purchase

    I'm missing an entire chapter of just purchased Steve Jobs book.  "This page contains the following errors:  error on line 1 at column 1 ... etc."  Tried restore my IPAD -- but still the error code.  Any suggestions

    I have been recieving the same error for the last three days (Feb '08) I can access every part of the iTunes store except shopping cart. I get the same message on two different PC's.
    I have been using Shopping Cart as a "wishlist" and really dont want to have the contents cleared as I cant remember everything I've put in there. This bug seems fairly prominent on Apples part based on the number of posts about it in the forums.
    Can someone point me to a good source of info on a fix for this?

  • Working with Data Loading page type

    All,
    i am creating a page of type="Data Loading" so i can load various data. However i want to bypass the process part where we map the fields/columns(i.e Data/Table mapping) because all data i load are stored in only one column so this mapping part is unnecessary. My requirement is to load the data then when you click next button it should take you to the "Data Validation" part then finally "Data Load Results" part.
    How do i go about this?
    apex 4.1.1

    You might try to mimic a button-press for the [Next] button. Probably just a submit will do after page rendering (so create a Dynamic Action that submits immediately after load)

  • Splitting dual book pages into separate pdf pages

    I have a book scanned into pdf with two book pages per adobe page (side by side). How can I split the pdf page in way that each book page becomes its own pdf page? My chief concern is that one side is always tilted which makes reading and highlighting difficult. Any help would be great. I have Acrobat 9 pro on vista. thanks.

    I have had to do this in the past, but the problem is the file size then
    doubles. I haven't figured out an easy to way to remove the data from the
    cropped areas.

  • Photo Quality on Picture Book

    I am trying to create a picture book in iPhoto using photo's from my son's football team. Some are digital images, but most are scanned pictures. Many of the scanned pictures have warning indicators in the picture book maker that says the printed picture may not be of quality. I would hate to send it off as is and have a poor picture book. I no longer have the pictures to re-scan. Does anyone have any experience with picture books through iPhoto who has dealt with this before?

    there is no answer for this? It totally depends on the pixel density of your photos and the size of the frame - the low res indicator comes on at below 180 dpi - a 179 dpi photo will probably still be acceptable - a 18 dpi one will not - it could be anything below 180 dpi
    This article is for prints rather than books but it will give you a guide as to minimum photos size - http://support.apple.com/kb/TS1135 - or simply multiply the frame size in inches by 180 and that will give you the minimum pixel size for your photo
    LN

  • Error with master page "insert current page number" when exporting book

    Using InDesign CS 5.5 for Windows
    Recently upgraded from InDesign CS (the really old one from 2003). I did save a copy of all my old version files and kept the old ID installed just in case (after reading all the horror stories on here).
    In my old version of ID, I created a book made up of about 70 documents. Some of these documents are one page, others have multiple pages. In the multiple page documents, I used the "insert ... current page number" character (or whatever the command was in the old version) on a master page, and formatted it to read, for example: Page 1 of 17, Page 2 of 17, Page 3 of 17, etc. When I exported my book to a pdf, it worked fine. (I do not want/have consecutive page numbers throughout the book, only in individual documents. By this I mean my entire book is about 280 pages, but not all of these 280 pages are numbered, just the groups of pages from these multi-page documents. It doesn't read page 1 through 280.)
    Got my upgrade to 5.5 a few months ago, added some documents to the book, and (if i remember right) when I saved the book it asked to convert every old version document to the new version, which I said okay. When I exported the book to a pdf, some documents that are longer than 2 pages are now numbered wrong; the numbers are now going like this: Page 1 of 17, Page 2 of 17, Page 2 of 17 (supposed to be page 3), Page 2 of 17 (supposed to be page 4), etc. Every page but page 1 is now page 2 of whatever.
    If I open the individual document and export it to pdf, the page numbers work fine. It's only when the document is exported with the book that the page numbers mess up. And it's not all the documents in my book; this error starts at a particular document and continues from that point throughout the rest of the book, affecting any document longer than 2 pages. Multi-page documents before this point in the book export with the correct page numbers.
    I create new documents by doing a "save as" with a previously created document and cut and paste as needed, so I'm not having to reformat or set up page numbers on each new document. I don't use layers or styles (I'm sure there's a better way to do what I need, but I've only had time learn the basics, just enough to be functional.)
    My attempts to fix this so far (using version 5.5), testing with the first document where the error appears: (1) I've removed the document from the book, deleted the insert current page number character, re-entered the insert current page number character, saved, exported the individual document to pdf and it worked fine. Put it back in the book, save, export, and it's wrong. (2) I took the document out of the book again, exported the document to .idml, saved as new .indd with new name, exported to pdf and it worked fine. Put it back in the book, save, export, and it's wrong. (3) I started up my old ID version, opened the old version of this document, exported to .inx, closed, opened .inx in ID 5.5, saved as new .indd with new name, exported to pdf and it worked fine. Put it back in the book, save, export, and it's wrong. (4) I moved the document up in the book order, putting it above a document that has correctly numbered pages, saved, exported to pdf, and this document was still wrong, but the one that has been numbered correctly all along is still correct. (5) I've compared settings for this document to others that number correctly and cannot find any difference.
    It's like the page numbers get hung on "2" when I export the book, but only in the last two-thirds of the book. Sorry it's so lengthy, but I hope this description of my problem is understandable. Any advice, other than going back to my old version documents and starting over?
    Thanks for your time and for all the awesome information this forum provides!
    alice

    Mr. Spier
    Right after I posted my question, I saw a post from last year where somebody had similar problems. (I cringed because I spent almost 3 days researching this problem and never ran across that post; thanks for not scolding me for posting a semi re-run.) I decided to try one of the easier solutions: I opened the problem document from the book panel, went to the master page and deleted the text box containing the page number, copied the page number box from a document that worked correctly, and pasted it into the problem document. Saved that doc, closed, saved book, exported to pdf, and it worked!! The page number problem was fixed. I went back and did the same thing for the other problem documents and they all number correctly now. 
    Probably not the best way, but for now this will fix it; I may have to do it again next time I add to the book. Although I didn't follow your instructions, I'll mark this as answered since it's working now. If it keeps giving me problems, I'll try the .inx export/new book route.
    thanks for your time
    alice

Maybe you are looking for

  • Lost Game Center Data

    why are ios 7 and 8 the only ones that are able to retrieve lost data from Game Center and not ios 6 anymore? ive lost data from multiple games and its very frustrating having to start all over when i have worked so hard on them. is there a fix for i

  • Oracle bpm 11g Release

    Hi, Are there any news about oracle BPM 11g release? When it will be released (I heard early 2010). We are starting a new project and nnewd to decide weather to use version 10g or new features of version 11g. Thanks, Matej

  • Designer on AIX server: how to

    Hi all, I've BusinessObjects Enterprise XI 3.1 on AIX Server: how can I launch and use Designer and the other "non-web" BusinessObjects tools (e.g.Import Wizard)?  At the  moment I use Designer or Import Wizard installed on a WIN Server and then I ex

  • INCREASE ALL MENUS AND BUTTONS

    Hello, with my windows screen resolution all PS buttons and menus are very small and therefore barely readable. How can you increase those appropriately, please?

  • New mediacenter app in development

    Hi guys, I'm thrilled to announce a new mediacenter on the scene. Currently in early state of development but allready very nice. Maybe some of you guys allready know XBMC? (Xbox Media Center) Well, this is the best media center around (free, open so