IPhoto '08 - cant compile book?

so I got my hardbound book altogether and ready to order, click 'buy' where it complies the book, and I get this error message
* -[NSPlaceholderMutableString initWithString:]: nil argument
done, nothing else happens. Do I need to make another book?
yikes

I recommend you use layouts that do not have text boxes.
This is easier than searching through your book and entering a space every where a text box appears. Also, in some layouts, you'll find that once you eliminate the text box, there is a little more space for your photograph(s)--which means they'll be slightly larger on the page.

Similar Messages

  • Cant upload book from iphoto

    Set up book. The program then started the process. When it got to upload part it froze my computer. No progress on the progress bar. I have a cable modem and great upload and download speed. When I tried to exit program my iMac froze and wouldnt allow force quit. Nothing worked.  I unpluged the computer and started all over--same result. 

    First create a PDF copy of the book as described in this Apple Document: iPhoto '11: Preview a book, card, or calendar before you order or print it and proof the contents before ordering.
    Save the PDF file to compare with the printed version when you receive it.
    Next boot into Safe Mode,  Mac OS X: Starting up in Safe Mode, and order the book while in Safe Mode.
    Are you ordering an XL sized book?  iPhoto is know to have problems with that size. If you can't get the XL sized book ordered in Safe Mode you'll have to change the size Large. Here's how:
    1 - Control-click on the book in the left hand pane and select Duplicate from the contextual menu.
    2 - carefully check all text boxes and photos to make sure all is as you want it.
    3 - create the PDF file before ordering.
    4 - if unsuccessful boot into Safe Mode and continue as described above.
    OT

  • Cant compile client prg

    Hello all,
    am using weblogic8.1, first of all I would like to know do we need to give a name("Advisor") in JNDI in weblogic, as its mentioned in HFEJB page52 for RI Server. if you say that we have give the JNDI name in weblogic,
    where do we ned to give?
    this is place where I stand now...
    AdviceBean.ejb
    package headfirst;
    import javax.ejb.*;
    import weblogic.ejb.*;
    import headfirst.*;
    * @ejbgen:session
    * ejb-name = "Advice"
    * @ejbgen:jndi-name
    * remote = "ejb.AdviceRemoteHome"
    * @ejbgen:file-generation remote-class = "true" remote-class-name = "AdviceRemote" remote-home = "true" remote-home-name = "AdviceHome" local-class = "false" local-class-name = "AdviceLocal" local-home = "false" local-home-name = "AdviceLocalHome"
    public class AdviceBean implements SessionBean {
    // OK, not very exciting advice! You should come up with something better...
    private String[] adviceStrings = {"test", "test1", "test2", "test3"};
    public void ejbActivate() {
    System.out.println("ejb activate");
    public void ejbPassivate() {
    System.out.println("ejb passivate");
    public void ejbRemove() {
    System.out.println("ejb remove");
    public void setSessionContext(SessionContext ctx) {
    System.out.println("session context");
    // this business method name is changed from the book, because
    // there of a bug on some versions of the J2EE RI
    public String getMessage() {
    System.out.println("in get advice");
    int random = (int) (Math.random() * adviceStrings.length);
    return adviceStrings[random];
    public void ejbCreate() {
    System.out.println("in ejb create");
    AdviceClient.java
    package headfirst;
    import javax.naming.*;
    import java.rmi.*;
    import javax.rmi.*;
    import headfirst.*;
    import javax.ejb.*;
    // not all of these imports are used in this code...
    // but in a real client you'd probably need at least
    // java.rmi.RemoteException and javax.ejb.CreateException
    public class AdviceClient {
    public static void main(String[] args) {
    new AdviceClient().go();
    public void go() {
    try {
    Context ic = new InitialContext();
    Object o = ic.lookup("Advisor"); // replace with YOUR JNDI name for the bean
    AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
    Advice advisor = home.create();
    System.out.println(advisor.getMessage());
    } catch (Exception ex) {
    ex.printStackTrace();
    I cant able to build with this file D:\Weblogic\user_projects\AdviceApp\AdviceApp\headfirst\AdviceClient.java
    So I remove this client file for a while to build the .jar
    after removing this client file, I can able to build. Done, now i got the AdviceApp.jar. again I brought back the client file to the same place..
    I tried from cmd
    D:\Weblogic\user_projects\AdviceApp\AdviceApp\headfirst>javac -classpath "C:\Program Files\j2sdkee1.3.1\lib\j2ee.jar";"D:\Weblogic\user_projects\AdviceApp\Advic
    eApp\AdviceApp.jar" AdviceClient.java
    AdviceClient.java:28: cannot resolve symbol
    symbol : class Advice
    location: class headfirst.AdviceClient
    Advice advisor = home.create();
    ^
    1 error
    Please tel me how to get rid of this issue...

    1008783 wrote:
    Hi
    I cant compile and excute this function
    /* Where can I declare or execute this fields */
    CREATE TYPE typ_get_brandings as object(
    BRANDING_CODE varchar2(200),
    NAME_DESC varchar2(200)
    /* Where can I declare or execute this fields */
    CREATE TYPE tab_get_brandings is table of typ_get_brandings
    CREATE FUNCTION get_brandings
    RETURN tab_get_brandings
    IS
    l_brandings tab_get_brandings;
    BEGIN
    SELECT typ_get_brandings( b.BRANDING_CODE,C.NAME_DESC)
    into l_brandings
    from development.brandings b,godot.company c
    where b.company_id = c.company_id
    return l_brandings;
    EXCEPTION
    WHEN OTHERS THEN
    CORPORATE.COMMON.EXCEPTION_LOG( 'DEVELOPMENT.BRANDING_ADMIN.GET_BRANDING', SQLCODE, SQLERRM, null, FALSE );
    return SQLCODE;
    END;
    Please helpHi ,
    Why you wanna create object ? any specific requirement?
    create table plch_test(id number,name varchar2(30));
    insert into plch_test values(1,'ram');
    insert into plch_test values(2,'abhi');
    insert into plch_test values(3,'aksi');
    CREATE OR REPLACE FUNCTION PLCH_FNC(p_id IN plch_test.id%TYPE)
    RETURN plch_test%ROWTYPE
    IS
    rec_plch_test plch_test%ROWTYPE;
    BEGIN
    SELECT id,name
    INTO rec_plch_test
    FROM plch_test
    WHERE id=p_id;
    EXCEPTION WHEN NO_DATA_FOUND THEN
    rec_plch_test:=null;
    RETURN rec_plch_test;
    END;Call the function
    SQL> set serveroutput on
    SQL> DECLARE
      2  rec_plch plch_test%ROWTYPE;
      3  BEGIN
      4  rec_plch:=PLCH_FNC(1);
      5  dbms_output.put_line('ID'||' '||rec_plch.id||' '||'NAME'||' '||rec_plch.name);
      6  END;
      7  .
    SQL> /
    ID 1 NAME ram
    PL/SQL procedure successfully completed.
    SQL> DECLARE
      2  rec_plch plch_test%ROWTYPE;
      3  BEGIN
      4  rec_plch:=PLCH_FNC(2);
      5  dbms_output.put_line('ID'||' '||rec_plch.id||' '||'NAME'||' '||rec_plch.name);
      6  END;
      7  .
    SQL> /
    ID 2 NAME abhi
    PL/SQL procedure successfully completed.
    SQL> Regards,
    Achyut Kotekal
    Edited by: Achyut K on Jun 6, 2013 12:03 AM

  • How do I transfer photos in iPhoto from my Mac Book to my iMac?

    How do I transfer photos in iPhoto from my Mac Book to my iMac?

    Depends on exactly what you want to transfer:
    The Original files: Export from iPhoto on the MacBook (File -> Export, set the kind to Original) and copy the files to the iMac. Then import to the Library on the iMac
    The Edited files: Export from iPhoto on the MacBook (File -> Export, set the kind to Jpeg or tiff, note the options for adding metadata to the export) and copy the files to the iMac. Then import to the Library on the iMac
    Both and all the Metadata: Link the two Macs together and use  iPhoto Library Manager
    Regards
    TD

  • Error message when compiling book "file is corrupt" referring to a photo.  Or "cannot find original photo".  Can you use photos that have been "edited" out of "Book Mode"?

    Error message when compiling book "file is corrupt" referring to a photo.  Or "cannot find original photo".  Can you use photos that have been "edited" out of "Book Mode"?

    I did copy it to my desktop, but it still won't let me open it.  I think the file on the disc might be corrupt or something like that though the cd itself checks out fine as far as viruses go.  I was able to verify the disc, but that's about it.  My husband tried it on his iMac and we have the same issue.  It's unzipping the folder, but won't let us open the folder on both the Mac Book Pro or the iMac by double clicking, going to file/open or right clicking.  It just keeps saying the same message as I posted above.  I think I'm just going to have the client put the pictures on either a memory card or a USB memory stick so she won't have to compress the files for zipping purposes.  It's been too frustrating trying to open this folder on this cd she gave me.  She said she created/zipped the cd on her Mac Book Pro but it sure won't open on mine.

  • IPhoto: solution when "buy book" generates an error.

    Hello all,
    I thought I post this. Maybe this will help others who face the same problem.
    I created a book in iPhoto. After clicking the "Buy Book" button, I received the message:
         <i>There was a problem contacting the Apple online store. Please try again.</i>
    I searched the internet and found several other people having the same problem.
    Several solutions were also given like:
         1. Temporarily tun of the firewall
         2. Be sure the select, in Preferences in iPhoto under Advanced the book store that matches the country of your Apple ID
         3. Be sure to have the correct and valid credit card data entered in your Apple ID
         4. Be sure the password of your Apple ID is correct
         5. Go to iTunes, "purchase" a free App and if you are prompted to accept Apples policy, do so and try again to buy your book
         6. Apple online store may be down or to busy, try again on a different time.
    However, none of these solutions worked for me.
    After digging further I finally found the solution (at least for me).
    If you have ever made, in System Preferences => Language and Text, under Formats any change, than "Region" will show "Customized" instead of your country. I live in the Netherlands, the default for short date is to show years in two digits. I changed this once (in the past) to show dates with four digits years.
    Resetting "Region" to match the country of your Apple ID did the trick.
    I was then able to order my book in iPhoto.
    Kind regards,
    emeu1

    Try the iPhoto community forum.

  • How do I create a map in iphoto 11 for a book?

    How do I create a map in iphoto 11 for a book?

    Select the map layout for one of the pages in your book.
    Click to view full size
    If you add photos to the book that have locations assigned to them they will show up on the map:
    OT

  • Ok somehow my sister deleted all my photos off my photo booth and now all my pictures in my iphoto i cant view them i just see white dots and boxes can anyone tell me how i can get my deleted photos back and how can view my photos again please !!!

    ok so somehow my sister deleted all my photos off photo booth and now all my photos on iphoto i cant view them i want to know how i can get my deleted photos back and how to view the rest of my photos please help !!!!

    Phonebooth is in your home folder under pictures with Iphoto and Ichat. Deleting pigtures from phonebooth should not remove any from Iphoto library. Something else had to happen.

  • I have a problem with iphoto (have a mac book pro): the icon in the dock appears with a question mark, and the application is gone!!! Can someone tell what's going on? Yesterday I had the same problem with itunes

    I have a problem with iphoto (have a mac book pro): the icon in the dock appears with a question mark, and the application is gone!!! Can someone tell what's going on? Yesterday I had the same problem with itunes: I downloaded the last version (it's free), but I cannot do the same with iphoto, and more important: I need to know what is happening!!! Please help me!

    Applications should not disappear all by themselves.
    If they are then that coud indicate serious problems with your hard drive.
    Backup everything up as quickly as possible.
    Using Disk Utility verify your system disk.
    Allan

  • Iphoto fails to upload book in the store. Always worked before. The book has 96 pages. Please help!

    Iphoto is unable to upload my new photo book in the store for printing. I have done it several times withouth problems. Keeps giving me the same error message "...failed asset upload...cancel order or try again". tried 10 times. Also done preview and saved as pdf. The book is 96 pages, I read max is 100.
    Can anybody help please.!!??
    A poor Roman husband trying to print abirthday gift...

    Make a temporary, backup copy of your library if you don't already have one (Control-click on the library and select Duplicate from the contextual menu) and  apply the fix below:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #1, followed by #3 and then #4 as needed.
    After each run thru the repair process see if you can create a PDF file of the book as described in this Apple Document: iPhoto '11: Preview a book, card, or calendar before you order or print it. If you can try ordering the book.  If you can't finish trying all of the otpions and then boot into Safe mode and try there.
    OT

  • How do i change cover photo in iPhoto when creating a book. I have tried everything

    how do I change cover photo in iPhoto when creating a book? I have tried everything. Mirage 388

    I have just finished one and changed the cover photo the same way I did on any page. Bring up the page, right click on it and then click on Remove Photo. Then just drag the photo you want into the empty space. You have to have the phot sidebar up on the right side to do this. Hope this helps

  • Why can't I open and retrieve my files from iPhoto and my address book after importing the files from my Power mac G5 to my new Mac Pro? I get a warning that says the new OS on my Pro doesn't open files from a Power Mac. Any idea how I can fix this?

    Why can't I open and retrieve my files from iPhoto and my Address Book after importing the files from my Power Mac G5 to my new Mac Pro? I get a warning that says the new OS on my Pro doesn't open files from a Power Mac. Any idea how I can fix this?

    For your addressbook, export the files to vCard on the PowerMac, then bring them over to your Mac Pro. For your iPhoto, copy the Users -> yourname -> Pictures folder to your Desktop on the Mac Pro, and open iPhoto on the Mac Pro holding the command and option keys.  Select the library file from that Pictures folder and open it.  It should import all the pictures into iPhoto as part of the rebuild process.  Other PowerPC to Intel migration issues are covered here: https://discussions.apple.com/docs/DOC-2295

  • How can i turn an iphoto slideshow into a book?

    I am wondering how I can turn an iphoto slideshow into a book?

    No - you can make a book from the same photos but not form the slide show - smiply elect the same photos (probably in the album you made the slide show from) and make a new book from them
    LN

  • IPhoto order to "buy book" freezes when assembling book

    When I start an online order from iPhoto to order a book, the process (and iPhoto) freezes when I am in the "assembling book " stage of the order.  How can I prevent this?
    Thanks!   ---Harriet

    Try the iPhoto community forum.

  • When using iPhoto to buy photo books, is Apple going to take ownership of my photographic material?

    Hi,
    I like iPhoto for its features and ease of use; however, I'm unclear on its privacy policy.
    When using iPhoto to buy photo books, is Apple going to take ownership of my photographic material?
    Can Apple use my pictures to advertise Apple products or services?
    I've asked these questions twice to the apple privacy postmaster, but they only reply with a boiler plate of links to get further support or they simply ignore my email. Should I assume the worse?
    I like iPhoto, but I'm not going to use it if I don't know that my privacy is satisfactorily safeguarded.
    Thank you for any insight
    Gabriele

    No and No. You retain all rights.

Maybe you are looking for

  • How to extract the content of a user uploaded txt file in web dynpro?

    Hi, I'm working on a java web dynpro component. This component consists of document upload field, where users should be able to upload .txt documents. These uploaded text documents should then be somehow read, and thir content displayed. I am already

  • No Images in Viewer

    Hi, I have Aperture 3.2.  Suddenly I can't see images in the main viewer.  The viewer is just grey (i.e. background color).  I can see the images in the browser and in the filmstrip area of the split view.  Any ideas what's wrong? Thanks, Robert

  • Homescreen icons are too big in lollipop

    After lollipop upgrade home screen icons are big . How and where can I reduce the size of these icons?

  • Transfer Photoshop to new computer

    I am currently using Photoshop CS 5. I want to transfer Photoshop to a new computer. I have CS 5 through an upgrade of CS3 which was a full version. On the new computer do I need to install CS 3  first then use the upgrade to CS 5 and then possibly u

  • How to restore macbook air

    My Macbook Air starts up and freezes on the Apple logo with the loading spiral and wont do anything else from there. Is there a way that I can completely restore the macbook air - there's nothing important on it that I need. Thanks, Andy