PDF Buttons not showing in iBooks

I have inserted navigation buttons at the bottom of a PDF docment within Acrobat X.  The buttons show up and work just fine in Acrobat.  They also show up in the Goodreader application.  However the buttons do not show up in iBooks.  Is there a way to make them show?  I have even tried to create a image and attach a link and the buttons still do not show up.  Any help or suggestions will be greatly appreciated.

Make sure you have followed the directions below copied from this article....
http://support.apple.com/kb/HT4227
Syncing and saving PDFs
To add PDFs to your iTunes library on your computer, simply drag and drop the PDF into your iTunes Book library.
To sync a PDF to iBooks on your device:
Select your iPhone, iPad, or iPod touch in the Devices list on the left in iTunes 10.1 or later.
Click the Books tab in the resulting window.
Ensure that the Sync Books checkbox is enabled.
If iTunes is set to only sync selected books, be sure to enable the checkbox next to the PDF you want to sync.
Click Sync.

Similar Messages

  • PDF files not showing in iBooks

    PDF files in iTunes do not appear in iBooks on my iPad after syncing.  Anyone know how to fix this?

    Make sure you have followed the directions below copied from this article....
    http://support.apple.com/kb/HT4227
    Syncing and saving PDFs
    To add PDFs to your iTunes library on your computer, simply drag and drop the PDF into your iTunes Book library.
    To sync a PDF to iBooks on your device:
    Select your iPhone, iPad, or iPod touch in the Devices list on the left in iTunes 10.1 or later.
    Click the Books tab in the resulting window.
    Ensure that the Sync Books checkbox is enabled.
    If iTunes is set to only sync selected books, be sure to enable the checkbox next to the PDF you want to sync.
    Click Sync.

  • Every time I try to save my Indesign document as an Interactive PDF, the option of either saving it as Interactive PDF or PDF is not showing.

    Every time I try to save my Indesign document as an Interactive PDF, the option of either saving it as Interactive PDF or PDF is not showing.

    You export to PDF, not save.

  • "record enable" buttons not showing up in Garage Band 10.0.3 (I have selected "show record enable"- a space in the track header opens up, but the button is not present.  Same with "input moniter".

    "record enable" buttons not showing up in Garage Band 10.0.3 (I have selected "show record enable"- a space in the track header opens up, but the button is not present.  Same with "input monitor".

    Look at all the posts in the forum from users with similar problems, it happened with the last Logic update.

  • Why isn't the edit button not showing in my ESX24 sampler?

    why isn't the edit button not showing in my ESX24 sampler?

    Is that during installation when you see the two icons.. the one on the left looking like a Garageband guitar icon, the one on the right like the Logic Pro platimum record icon?
    Yes.. that one.. with the choice to click on which option you want/are coming from...
    p.s. I'll probably aquire a Mac Mini this fall then upgrade.... I mean repurchase!
    I think I managed to grab one of the last of the 2011 refurb'ed MMS's.... at that super low price Apple were selling them for... before they bumped it up and now, they seem to have none left at all at any price
    However, just in case, I have found this site really useful at keeping track of Apple's refurb stock... and pricing
    http://www.refurb.me/us/

  • PDF does not show up

    Hi all,
    The following is my code snippet in JSP for a project which i used to generate a PDF file. But the PDF does not show up . The Adobe loads and i get a pop-up saying
    'Acrobat could not open 'Example[1].pdf' because it is either not a supported file type or because the file has been corrupted.'
    This is the code snippet i used:
    <%@ page import="java.io.*" %>
    <%
    String s = new String("Hai this is PDF Sample");
    byte file[] = s.getBytes();
    try
    BufferedInputStream inputStream = new BufferedInputStream(new ByteArrayInputStream(file));
    BufferedOutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
    response.setHeader ("Content-Disposition", "attachment; filename=Example.pdf");
    response.setContentType("application/pdf ; charset=iso-8859-1");
    int bytes = 0;
    byte buffer[] = new byte[1024];
    while((bytes = inputStream.read(buffer)) != -1)
    outputStream.write(buffer,0,bytes);
    inputStream.close();
    outputStream.flush();
    outputStream.close();
    }catch
    (Exception e){}
    %>
    Can anyone please help me out.
    Thanks in Advance.
    RDP.

    FOP is an Apache project that lets you generate PDFs using XML and XSL.
    Here's the servlet:
    package common.servlets;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringReader;
    import java.net.URLDecoder;
    import java.util.Map;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.sax.SAXResult;
    import javax.xml.transform.stream.StreamSource;
    import org.apache.fop.apps.Driver;
    * A servlet that takes XML and XSL streams and sends back a PDF file,
    * using Xalan and FOP.
    public class PDFServlet extends HttpServlet
        /** Response content type */
        public static final String DEFAULT_RESPONSE_CONTENT = "application/pdf";
        /** Parameter/attribute name for XML input */
        public static final String DEFAULT_XML_NAME = "print.xml";
        /** Parameter/attribute name for XSL input */
        public static final String DEFAULT_XSL_NAME = "print.xsl";
        /** Default character encoding */
        public static final String DEFAULT_CHAR_ENCODING = "UTF-8";
        /** Transformation factory */
        private TransformerFactory transformerFactory;
         * Initialize the servlet
         * @throws ServletException if the initialization fails
        public void init() throws ServletException
            try
                this.transformerFactory = TransformerFactory.newInstance();
            catch (Exception e)
                throw new ServletException(e);
         *  Process a GET request
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doGet(HttpServletRequest request,
                                     HttpServletResponse response)
            throws ServletException, IOException
            this.doPost(request, response);
         * Process a POST request by looking up the JSP using the source + action
         * parameters
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response)
            throws ServletException, IOException
            try
                Driver driver = new Driver();
                driver.setRenderer(Driver.RENDER_PDF);
                ByteArrayOutputStream baos  = new ByteArrayOutputStream();
                driver.setOutputStream(baos);
                Map parameters   = request.getParameterMap();
                String xmlString = null;
                if (parameters.containsKey(DEFAULT_XML_NAME))
                    xmlString = request.getParameter(DEFAULT_XML_NAME);
                else
                    xmlString = (String)request.getAttribute(DEFAULT_XML_NAME);
                String xslString = null;
                if (parameters.containsKey(DEFAULT_XSL_NAME))
                    xslString = request.getParameter(DEFAULT_XSL_NAME);
                else
                    xslString = (String)request.getAttribute(DEFAULT_XSL_NAME);
                if ((xmlString != null) && (xslString != null))
                    xmlString = URLDecoder.decode(xmlString, DEFAULT_CHAR_ENCODING);
                    xslString = URLDecoder.decode(xslString, DEFAULT_CHAR_ENCODING);
                    Source xml = new StreamSource(new StringReader(xmlString));
                    Source xsl = new StreamSource(new StringReader(xslString));
                    Result fop = new SAXResult(driver.getContentHandler()); // Intermediate result
                    Transformer transformer = this.transformerFactory.newTransformer(xsl);
                    transformer.transform(xml, fop);
                    response.setContentType(DEFAULT_RESPONSE_CONTENT);
                    response.setContentLength(baos.size());
                    response.getOutputStream().write(baos.toByteArray());
                    response.getOutputStream().flush();
                else
                    PrintWriter out = response.getWriter();
                    if (xmlString == null)
                        out.println("Missing XML");
                    if (xslString == null)
                        out.println("Missing XSL");
            catch (TransformerException e)
                e.printStackTrace(System.err);
                throw new ServletException(e);

  • TS2972 why is the import button not showing at the button right hand corner of iTunes?

    why is the import button not showing at the bottom right hand corner of my ITunes page.  I am trying to transfer files from my home share library onto a new computers library.

    See if it isn't hidden under the View menu. iTunes- Turning on iTunes menus in Windows 8 and 7.

  • Folio Overlay Buttons not showing up on Panels after DPS Tool update

    Folio Overlay Buttons not showing up on Panels after DPS Tool update

    You're going to have to do much better as far as describing the problem. A screenshot would be a good start.
    Bob

  • Adobe PDF Toolbar Not Showing In Firefox

    I installed CS5 Master Collection in Windows 7 64 and Adobe PDF toolbar installed automatically in IE8 but not in Firefox latest version. Would somebody please tell me what to do to install in Firefox?
    Thanks a lot!

    Thank you for all the information. I'll upgrade to Acrobat X.
    Date: Sun, 6 Feb 2011 11:45:21 -0700
    From: [email protected]
    To: [email protected]
    Subject: Adobe PDF Toolbar Not Showing In Firefox
    Adobe Reader if always free. Acrobat requires a purchase.
    Also Acrobat X has different UI, there is usually a floating toolbar that can be used to open the full toolbar.
    >

  • [svn:osmf:] 13455: WebPlayer: Fixing full screen button not showing.

    Revision: 13455
    Revision: 13455
    Author:   [email protected]
    Date:     2010-01-12 10:59:01 -0800 (Tue, 12 Jan 2010)
    Log Message:
    WebPlayer: Fixing full screen button not showing.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/FullScreenEnterButto n.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/FullScreenLeaveButto n.as

    I am not sure what's happening with IE9 (no live site) but I had real problems viewing your code in Live View - until I removed the HTML comment marked below. Basically your site was viewable in Design View but as soon a I hit Live view, it disappeared - much like IE9. See if removing the comment solves your issue.
    <style type="text/css">
    <!-- /*Remove this */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;

  • Why do changes to a .pdf file not show up in iBooks?

    I have a number of important and useful documents in .pdf format that are stored in iBooks on my iPad.  I added a new document to the iTunes library and then synced the iPad.  Voila!  The new document showed up in the PDFs section of the iBooks collections.  Then, I recognized that I needed to update some information in the document, so I opened the original (on my Mac) in Adobe Acrobat and added a few comments using the Typewriter tool.  I then reimported it to the library in iTunes, then synced the iPad again.  My added material was not in the document as it appeared in iBooks.  OK, I deleted it from iTunes, synced the iPad again and the file was gone from iBooks, as I intended.  I then reimported the new file with the added material into the iTunes library and synced again.  The file still did not show my added material.  I can look at the file in iTunes, Adobe Acrobat, Adobe Reader, even Preview and the file looks fine.  I even changed the file name.  The only place it does not look right is in iBooks.  I can print it in any of the aforementioned applications and it looks fine.  I suppose I could print it, scan it and then import it to iTunes yet again, but that seems to be kind of a stupid workaround.
    I have done everything I can possibly think of.  I have deleted the file from iBooks on the iPad, then deleted the file from iTunes, restarted, burrowed into the iTunes Library file (Users->myname->Music->iTunes->iTunes Music->Books->filename) and deleted the file directly from there and then emptied the Trash, restarted the iPad after deleting the file from iBooks, tried adding the information as a text box in Acrobat (instead of using the Typewriter), I've shaken my fist repeatedly, burned some white sage, even considered throwing my iPad across the room.
    In desperation, I finally printed and scanned the page I needed, then opened the original file in Acrobat, added the new page and deleted the old one.  Then, I reimported the file into iTunes and synced the iPad.  Now I have what I need with the same file name as before.  It's actually the same file, just modified by swapping pages.  But, why in the **** can I not just add what I want to that particular page using Acrobat and then reimport that?
    I am not a newbie.  I still have my old Mac Plus out in the garage.  I use Acrobat, Photoshop, Bridge and InDesign on a regular basis, so I am no stranger to Adobe products.  Am I missing something?  Something unbelievably simple?
    (OK, deep, cleansing yoga breath...)
    Even though I found a workaround, I'd still like to know why I couldn't do what I wanted to do.

    Thanks, Demo, I'll give that a shot. On the other hand, I really don't want to have some files in iBooks and other ones in Adobe Reader. If Adobe Reader will let me organize them in folders, it might be a great solution.
    However, there's no ".pdf management" involved here. It's simply "Read the #%€\#^% .pdf file I gave you" and there is nothing to "manage". Whatever opinions Apple has about Adobe, .pdf is a fact of life and should not require any handstands and backsprings just to read a file. (Are you listening, Apple?) I refinanced my home with .pdf files; print it, sign it, scan it, e-mail it back. (OK, calm down, it'll be all right... Sigh...)
    Whatever the result, I'll report back.
    Thanks again.
    Jeff B

  • Form guide's preview PDF button not visible in Firefox

    Don't know if this is a silly question but when I preview form guides in Firefox then the 4 top-right buttons (including Show/Hide PDF) doesn't appear. I have confirmed that I selected the "Include PDF preview" option. In IE everything works fine, so I'm assuming it has something to do with Active X.
    I did have a look at the generated html, but couldn't really get much wiser. Any ideas?

    Hi Vijay,
    Goto:
    Universal Worklist Content Configuration -> Click to Administrate Item Types and View Definitions
    In the table under the "Current Configurations" tab, select the standard travel configuration provided by SAP -> "com.sap.pct.erp.mss.tra".
    Here, search for the code of the task for which everything is working fine; in our case it was TS20000118. Copy this piece of code.
    Now download the currently active XML configuration. In the saved XML file, search for the task code which is not working as expected. Replace this piece of code with the code copied in the above step. Save with a different name.
    Upload this new configuration with HIgh priority.
    Reregister the connector and clear the cache.
    These steps solved my problem. Probably it should work for you too.
    Regards,
    Shashank

  • PDF index not working on iBooks

    I have several pdf textbooks I read on ibooks. They all have an index (both the multiimage one and the 'clickable' list one that you can access at the top right hand corner of the ipad screen). One of them doesnt show the clickable list index, even though it show the multi image one. I have tried this same pdf book in other reading apps and it does display an index (goodreader, kindle, nook). I enjoy ibooks more than those apps for many reasons and would like this book to work on here as well. Any thoughts? Thanks

    You're right -- the placed PDF loses all its interactivity even when it becomes part of a PDF article. You'll need to add buttons over the PDF as you describe. Also, keep in mind that the Show/Hide Buttons action isn't supported in DPS, so you'll need to use a combination of buttons and MSOs to create hotspots, as described in this article:
    http://blogs.adobe.com/indesigndocs/2010/12/hot-spot-button-workaround-for-indesign-dig-pu bs.html

  • PDF file not showing correctly in Preview or other apps

    Hi,
    I've trying to find an answer to my question for some time now on the internet, but couldn't find it anywhere. When I open a pdf file from someone who created it using Windows diagrams that are supposed to be Matrices are not showing properly. Most probably the matrices were created using the equation builder in MOffice.
    <-- this is supposed to be a matrix
    There is also a problem with showing symbols like subscripted or superscripted letters (Arrows represent superscripted or subscripted letters, either up or down):
    And for some reason, when I try to quicklook the file, some pages are displayed incorrectly - only showing a quarter of the page:
    Any help on this? Is there some sort of an update to solve this problem, or should I download additional fonts??
    I am using a Macbook Alu from 2008 with OS X Maverick installed - all latest updates are installed.. (However the same problem appeared when using an iPad)
    Thanks a lot i advance!

    Hi Carolyn,
    I looked at your file and it seems the problem is with the resolution. The design is great but the resolution was too low.
    Fortunately your Apple Smart Object was high resolution so I was able to increase the resolution of the file as it is. You will need to replace the Bar Code and possibly the little flower on the back cover with high res versions.
    In the future you need to start with the document being sized right and the resolution at 300 ppi. Make sure your graphics are high resolution from the start as well. You can't regain resolution that was left out, although using High Resolution Smart Objects can give you the the latitude you need to size back up.
    After I sent the file I looked closely at the font. The one font you used does have zaggies but it's supposed to. Bradley Hand ITC TT is kind of a rough font around the edges by design. If this is what seems to be the problem, you will need to change to another font. Still, the file needed to be higher resolution.
    I sent one back to you in high res. All you need to do is replace the bar code and the little flower with high res version. The apple graphic smart object was high enough.
    Linda

  • Adobe PDF Printer not showing -- no fix found yet

    The Adobe PDF printer is no longer showing on a system in the office. It's running Windows 7 Professional x64. The Adobe Acrobat version is Pro X.
    I have tried litereally everything I could find here in the forums and elsewhere, including uninstall, clean-up (using the Adobe tool), reinstall, maually printer install attempts (failed), manual removal of all printer ports relating to Adobe PDF documents etc. Nothing worked.
    Adobe Acrobat itself is working perfectly fine, but the PDF printer is not showing anywhere, or working. I had to install an alternative for now (PDF Creator), but obviously that's not an acceptable solution. The issue started, I believe, after some tax software package was installed that had its own PDF printer. The software has since been removed, and all troubleshooting has taken place after.
    System restore is also no option, since it doesn't go as far back.
    If anyone has any further suggestions, it would be very much appreciated. I am an IT professional, I'm comfortable with registry rediting or similar if that is what it takes, I'd just like to find a fix, and so far I've exhausted everything I could find (including Experts Exchange).

    Try this process.  If you get any errors then screenshot them and post them back to the forum.
    Try this to add Adobe PDF printer manually on Windows 7.
    If windows 7 is Enterprise or better edition: (Admin rights required)
    Start>search for printmanagement.msc and open the print management module
    Expand the print server and expand the computer name to see availbale printers, drivers and printer ports.
    - from printers ensure there's no Adobe PDF printer, if there is delete it
    - go to ports and delete the PDF ports (the ones ending in *.pdf)
    - go to drivers and delete the PDF converter.
    Take note if any errors occur, but continue with the following steps regardless.
    If on windows 7 home edition, just goto start>Devices and Printers and ensure PDF pritner is not listed.
    Then open the registry (if any erors deleting these keys happen, see below)
    1: go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers
    delete any adobe PDF printer subkey present
    2: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors
    delete the PDF port monitor if present
    3: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers
    again delete and pdf printer subkey
    If any erros occur, you need to set the owner of the key to the currently logged in admin user, then ensure that user has full control.
    Do this by right-click the key and selecting permissions, clicking on advanced, then the owner tab.
    Once all that has been done, open a command line as administrator.
    Copy and paste the following commands in order
    1: net stop spooler
    2: rundll32.exe setupapi.dll,InstallHinfSection AdobePDFPortMonitor 128 C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf
    3: net start spooler
    4:rundll32.exe printui.dll,PrintUIEntry /if /b "Adobe PDF" /f "C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf" /r "Documents\*.pdf" /m "Adobe PDF Converter"
    That should set back the pdf printer.

Maybe you are looking for

  • Qosmio X505-Q875 - Can't install my work software package

    I have to say I'm extremely disappointed in Toshiba. I'm a small business owner and use some pretty advanced software for which I pretty much need a gaming style laptop for. After looking at many different companies, including custom high end builder

  • Premiere Elements 12 can't be installed on my PC

    Hi, I don't know why - but I bought Premiere Elements 12 today (physical copy) and then tried to get it running. At first, it installs and everything is fine, but after the Elements 12 Organizer is installed, the installation programm gives me an err

  • Oracle ADF UIX and Struts

    Does Oracle ADF UIX use Struts components internally? If yes, Does Oracle Support the issues that arises because this internally used Struts components? (I am using Oracle ADF in my application. Thanks, Aravind.

  • Compare tables in two schemas for the table with particular column & value

    Hello All, I have a query to find out the list of table from a given schema to extract all the tables having a search column . ex : SELECT OWNER, TABLE_NAME, COLUMN_NAME FROM ALL_TAB_COLUMNS WHERE OWNER='<SCHEMA_NAME>' AND COLUMN_NAME='<COLUMN_NAME>'

  • Selecting top N clients by branch or in the whole company

    Hi all! I have a report that selects the top 20 clients of each branch of the company. The company has more than 700 hundred branches. The report was done by: 1) creating a calculation using the rank function, partitioned by rank, ordered by descendi