Exporting ePub won't export all pages

I am trying to create an epub document that is 95% images (children's book). The images are placed inline and not dropped in like images would normally be. When I export the document and open it in iBooks I only get 1/2 of the pages exported. Not sure what is going on. get a formatting error when I export the epub, but I can figure out what is causing the error. Any ideas?

donny,
How exactly did you fix this problem?  I am having the exact same issue (also trying to put one of my daughter's books into the iPad via Pages), and like you, I don't get all of the pages.  I have Pages '09 4.1, and working on a MacBook Pro (2010 vintage).  I have spent days trying to get this project sorted.   I started with iBook, but the Apple ibook ePub like standard does not support the page turning function.  I downloaded Pages last night and have this problem now.  BTW, I tried to create a second book with a whole new set of images, and got the same problem (although on a different page number).
Any help would be appreciated, as my daughter is growing up fast.  

Similar Messages

  • Export all pages to dreamweaver

    Can you export all pages you have made in Fireworks CS4 to
    Dreamweaver at the same time, and if yes, how?
    / Lena

    Lena, resolution of your document makes a huge difference
    when printing. I'm guessing here, but are you using a resolution of
    72 dpi? If so, that won't look very good when printed (that
    includes 'printing' to a .pdf file) A resolution that low will only
    look good on screen. If you must print and have it look good,
    you'll need to use a higher resolution.
    Jim

  • Fireworks CS6 export all pages as PDF crash

    I cannot for the life of me Export all pages as pdf from FW CS6 on my Mac. All software is fully up-to-date. I have many times Exported scucessfully before, but now the same file is no longer exportable. I'm going crazy. The source PNG file is a 15 MB file of 68 pages, it is filled with hotspots that should export an interactive PDF. (I deleted all of the "unused library symbols" (even though that deletes symbols that are actually in use)). My Mac is a PowerMac 8GB RAM... I can't remeber the processor setup... I can tell you later when I'm at work...
    I have been using FW since late 90s. FW crashes a dozen or more times a day these days. I'm tired of fighting it. Adobe has frankly been woeful in updating FW (on the Mac at least). It is an excellent product... but at best an unfinished product. I've sent bug reports through official channels for years and every year Adobe fails to fix them. It is quite shocking really.
    I hope I can get a quick answer, or else my job will become much more difficult.

    Here's a partial Crash output, let me know if more would help:
    Process:         Adobe Fireworks CS6 [5239]
    Path:            /Applications/Adobe Fireworks CS6/Adobe Fireworks CS6.app/Contents/MacOS/Adobe Fireworks CS6
    Identifier:      com.macromedia.fireworks
    Version:         Adobe Fireworks CS6 version 12.0.0.236 (12.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [163]
    User ID:         502
    Date/Time:       2013-02-05 17:33:03.564 -0500
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          95268 sec
    Crashes Since Last Report:           72
    Per-App Interval Since Last Report:  84851 sec
    Per-App Crashes Since Last Report:   17
    Anonymous UUID:                      EDC2114F-8AD4-DC55-0A2A-EC60302FB1F0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x9856fa6a __pthread_kill + 10
    1   libsystem_c.dylib                       0x935caacf pthread_kill + 101

  • Adobe Reader X won't print all pages supposed to; Why Not?

    Adobe Reader X won't print all pages supposed to; Why Not?

    Similar situation here.  Have multiple users getting hung up after the progress bar for printing appears.
    If forced to quit, prints do eventually appear sometimes.  Here's my app event error:
    (System is XP 32bit, direct connect via USB printer)

  • [AS] Problem with exporting all pages individually

    Hi, I ain't found any solutions by my self or on the web, so I hope, someone can help here.
    I wrote this piece of AS code. I wish it exports all the pages as separate PDFs.
    Alas, it crashes saying that the script ca't understand the page range.
    Could you please telle me where I do bad ?
    set Fpath to (choose folder with prompt "pick") as string
    tell application "Adobe InDesign CS3"
    set mydoc to active document
    set pcount to count pages of mydoc
    repeat with p from 1 to pcount
    tell PDF export preferences
    set page range to p as string
    end tell
    set docname to "toto" & "_" & p & ".pdf"
    set pdfname to Fpath & docname
    export to file (pdfname) format PDF type using "[PDF/X-1a:2001]" without showing options
    end repeat
    end tell
    thanks in advance,
    Loic

    Hi Loic,
    Here is a little altered version of the ExportEachPageAsPDF script from the examples provided by Adobe. I assume, from the script you posted, that you want exported files to be named in the following way: toto + _ + page number + .pdf. But in my judgement, it would be more reasonable to use the name of active document without extension instead of "toto".
    Why are you trying to reinvent the wheel? Isn't it better to take a ready-made script and remake it to your needs?
    Kasyan
    tell application "Adobe InDesign CS3"
    if (count documents) is not equal to 0 then
    my myChooseFolder()
    else
    display dialog "Please open a document and try again."
    end if
    end tell
    on myChooseFolder()
    set myFolder to choose folder with prompt "Choose a Folder"
    --Get the folder name (it'll be returned as a Unicode string)
    set myFolder to myFolder as string
    --Unofficial technique for changing Unicode folder name to plain text string.
    set myFolder to "class ktxt" of (myFolder as record)
    if myFolder is not equal to "" then
    my myExportPages(myFolder)
    end if
    end myChooseFolder
    on myExportPages(myFolder)
    tell application "Adobe InDesign CS3"
    set myDocument to active document
    --set myDocumentName to name of myDocument
    repeat with myCounter from 1 to (count pages in myDocument)
    set myPageName to name of page myCounter of myDocument
    set page range of PDF export preferences to name of page myCounter of myDocument
    --Generate a file path from the folder name, the base document name, and the page name.
    --Replace any colons in the page name (e.g., "Sec1:1") so that they don't cause
    --problems with file naming.
    set myPageName to my myReplace(myPageName, ":", "_")
    set myFilePath to myFolder & "toto" & "_" & myPageName & ".pdf"
    tell myDocument
    --The export command will fail if you provide the file path
    --as Unicode text--that's why we had to convert the folder name
    --to plain text.
    export format PDF type to myFilePath using "[PDF/X-1a:2001]"
    end tell
    end repeat
    end tell
    end myExportPages
    on myReplace(myString, myFindString, myChangeString)
    set AppleScript's text item delimiters to myFindString
    set myTextList to every text item of (myString as text)
    set AppleScript's text item delimiters to myChangeString
    set myString to myTextList as string
    set AppleScript's text item delimiters to ""
    return myString
    end myReplace

  • Won't print all pages or part pages

    I just bought a 4501 Envy all in one. I prints first page good then next page only half the page. Getting very frustrated. Can anyone help me fix this problem.

    Hello @sduet1, 
    welcome to the HP forums.
    I understand that your new Envy 4501 is not printing full pages.
    I would like to help.
    Often problems like this are cause by software. On rare occasions it can be a communications issue.
    So that I may better assist you I have a few of questions.
    1. How is your printer connected to your computer?
    is it wireless, USB or LAN?
    2. Is your coputer a PC or MAC?
    3. What version is the opperating system on your computer?
    Windos xp? Windows 8? OS X 10.6?
    Also I have included a link to a very common version of this issue for Windows 8.
    Wireless HP Printer Prints a Partial Page or Fails to Print All Pages in Windows 8
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • PDF won't display all pages

    I'm having problems with a PDF I'm generating, I'm using the presets, never have had the problem before, but some of the pages won't display, there's only a white page. Has anyone else had this problem before? How did you work around it?
    Thanks!

    Here is a GoogleDocs PDF of the particular PDF I'm having issue with: https://docs.google.com/fileview?id=0BzFhXCwCx4SzZDhiN2FjZWEtM2IyNS00Njg4LWI5NTQtNTc5ZDVlM GNhNWVk&hl=en
    Yes, it PDF's on it's own.

  • Hp LaserJet 1200 won't print all pages

    My hp laserjet 1200 has started acting strangely (or Mac OS) in that it sometimes, not always, fails to print the last page of a job, regardless of what program it is from. If it is a 6-page docuement, it only prints 5 pages, or 1 out of 2, etc. Anyone think of an explanation? (MacMini, 10.4.9)
    Ken

    If you are using a local connection (USB), then I recommend you install an alternate USB driver, called "usbtb."
    http://sourceforge.net/project/showfiles.php?group_id=1537
    Then, delete and reAdd the printer in Printer Setup. It will show up with both usbtb and regular USB next to it.

  • PDFs won't print all pages; spool disappears in printer

    I've got the latest and greatest of acrobat pro on mac os x 10.5.7.  I'm printing a 2 MB PDF, that's 28 pages.  For the life of me... I can't get it (or any document) to print more than 4 pages.  I've tried printing from multiple computers, rebooting machines, the job will disappear out of the print monitor spool.  The Printer I have is Konica Minolta 5550 connected via ethernet... I wasn't sure if this was related to Acrobat or the Printer, so I decided to print a 10 page indesign document... printed flawlessly...

    Met with IT. tried to install a native driver (as opposed to a generic postscript).  Same problem.  There's a solution that sits outside of Acrobat... Mac OS X "Prevew", prints the doc flawlessly.  I'm not sure what else to do. I've even tried some advanced settings to print as image, where it takes a long time to flatten each page, then print.. no pages will print. I'm inclined to say it's a memory issue between the Mac and this printer, but perplexed because there is no issue with "Preview"...

  • Export current page to JGB with no confirmation?

    Hello,
    I'd like a script to export just the current page as a JPG to my desktop, with specific spec, without confirmation, with an automated filename (filename+date+time+".jpg").
    I've found one or two that export all pages, or have other needs, but nothing like this.
    My remote bosses like to see quick shots of pages I'm working on, but as they print a lot of them I'd like higher resolution than screen shots, which is how I'm doing it now. I can go the normal File>Export route, but that's too painful for the frequency and speed I need to fire these out. I just want to hit a keystroke which fires the script which results in a JPG on the desktop for me to jam into iChat.
    It would be too much to ask to have a keyline around the page, I suppose? Do dreams come true?
    I'm on CS5.5.
    Thank you for any help!

    Adjust "Export JPEG" options according to your needs (see comments).
    /* Copyright 2013, Kasyan Servetsky
    July 27, 2013
    Written by Kasyan Servetsky
    http://www.kasyan.ho.com.ua
    e-mail: [email protected] */
    //======================================================================================
    var scriptName = "Export current page to JPG - 1.0";
    Main();
    //===================================== FUNCTIONS  ======================================
    function Main() {
        if (app.documents.length == 0) ErrorExit("Please open a document and try again.", true);
        var doc = app.activeDocument;
        if (app.activeWindow.constructor.name != "LayoutWindow") ErrorExit("Unable to get page number. Quit story editor.", true);
        var page = app.activeWindow.activePage;
        with (app.jpegExportPreferences) {
            exportingSpread = false;
            jpegExportRange = ExportRangeOrAllPages.EXPORT_RANGE;
            pageString = page.name;
            exportResolution = 300; // The export resolution expressed as a real number instead of an integer. (Range: 1.0 to 2400.0)
            antiAlias = true; //  If true, use anti-aliasing for text and vectors during export
            embedColorProfile = false; // True to embed the color profile, false otherwise
            jpegColorSpace = JpegColorSpaceEnum.RGB; // One of RGB, CMYK or GRAY
            jpegQuality = JPEGOptionsQuality.HIGH; // The compression quality: LOW / MEDIUM / HIGH / MAXIMUM
            jpegRenderingStyle = JPEGOptionsFormat.BASELINE_ENCODING; // The rendering style: BASELINE_ENCODING or PROGRESSIVE_ENCODING
            simulateOverprint = false; // If true, simulates the effects of overprinting spot and process colors in the same way they would occur when printing
            useDocumentBleeds = false; // If true, uses the document's bleed settings in the exported JPEG.
        var fileName = doc.name.replace(/\.indd$/, "") + "_" + GetDate() + ".jpg";
        var file = new File("~/Desktop/" + fileName);
        doc.exportFile(ExportFormat.JPG, file);
    function GetDate() {
        var date = new Date();
        if ((date.getYear() - 100) < 10) {
            var year = "0" + new String((date.getYear() - 100));
        else {
            var year = new String((date.getYear() - 100));
        var dateString = (date.getMonth() + 1) + "-" + date.getDate() + "-" + year + "_" + date.getHours() + "-" + date.getMinutes() + "-" + date.getSeconds();
        return dateString;
    function ErrorExit(error, icon) {
        alert(error, scriptName, icon);
        exit();

  • HT4168 How does one export a Pages doc to epub?

    How do I export a Pages doc to epub-previous articles state you should choose Share > Export to epub-However when you try that you get a message stating that iworks has been discontinued? What now-I still do not know how to publish a Pages document to epub (post iworks so-to-speak) -please help? I have writtern a 30 pages mini-ebook and now want to publish it to epub (to enable me to publish it on iBooks, B&N and Amazon Kindle) but I do not know how to proceed?

    How did you buy Pages?
    Which MacOs system do you have on your computer?
    What is the exact message you get?
    Which version of Pages do you have?
    Please answer all questions and if you don't know how ask again.

  • I am exporting a pages doc to ePub and I keep getting formatting problems any idea thx in advance

    I am exporting a pages doc to ePub and I keep getting formatting problems any idea thx in advance

    Since you don't say what the "formatting problems" are, all we can say is:
    "There, there. Hope they get better."
    Peter

  • I am exporting a Pages document to Epub and Pages is compressing my jpg images.  How do I keep the original jpg size during the export to epub process?

    I am exporting a Pages document to Epub and Pages is compressing my jpg images (I think to 72 dpi from original 600 dpi). 
    How do I keep the original jpg size during the export to epub process?

    We are still trying learn how to use Pages to build ePub documents with high resolution graphics that will expand clearly when they are tapped. Very large screen shots are my example here.

  • Export from Pages to ePub??

    Help! I need to export from Pages to epub.  I've read the tutorial a hundred times and it says that when you click on "export" one of the options should be epub.  However,  my only options are pdf, word, or rtf.  What am I doing wrong? 

    If your admin bought the iWork package as a DVD, Pages '09 version 4.0.3 is really the late version available on this media.
    As fruhulda wrote, you must get and apply an updater (maybe you must ask the admin to do that, I know that some of them are a bit picky).
    PS, since last wednesday, the best Apple tool to create ePub is the free iBooks Author.
    Yvan KOENIG (VALLAURIS, France) dimanche 22 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • HT4168 When I export a pages document as an ePub file the result is a blank locked text edit file on my desk top not an ePub file as previously no problem creating. How do I fix? HHD

    WHenWhen I export a pages document as an ePub file the result is a blank locked text edit file on my desk top not an ePub file as previously no problem creating. How do I fix? HHD

    Try adding .epub to the end of the name.
    I assume you are aware that to open an .epub file you need a special app, not TextEdit or Pages, right?

Maybe you are looking for