Why does IBA not include the table of contents when exporting to PDF?

Why does IBA not include the table of contents when exporting in PDF? I can seee the TOC in iBooks Author but when I want to see what it looks like in a regular PDF, the TOC does not show up.

Strange question you ask here. Not sure why that is relevant to "why" IBA won't publish a table of contents in a PDF.
But since eyou asked, it's simple, I want to author some books in IBA and also see what they look like - completed - in PDF. Again, any suggestions as to a work around so I don't have to cut and paste back into Pages?

Similar Messages

  • HT204406 I have subscribed to match on iTunes and organized my music on my Mac Book.  Why does it not appear the same way on my iPad

    I would like my music to appear organized in the same way on my iPad as I have done it on my Mac Book.  (and on my iPhone as well)  Since it is in the cloud, why does it not appear the same way in all devices?

    The purpose of iTunes match is to make your music library available to all of your devices anywhere. It will sync Playlists, but no other type of organization you may have made.
    If you're having trouble, be sure you are logged into the same Apple ID on all devices but be sure to read this article and pay special attention to associating your devices with an Apple ID. There are important restrictions you should know about.

  • Why does apple not remove the malware Genieo

    Why does apple not remove the malware Genieo - it takes over the Safari browser even with extensions turned off - firefox works fine but the malware is still alive and kicking on my mac.  Should I just uninstall safari and hope the malware is not doing more damage in the background?

    Hi Sickof --
    Apple has never had anything to do with Genio.  It is sneakily installed with other apps you think would be helpful. It is very sickening, IMHO. 
    Here's a thread here -- It's long, I know, but it's got great information for you.
    https://discussions.apple.com/thread/4497906?start=0&tstart=0
    Keep reading.  It's worth it.

  • Why does iPhoto not recognize the .jpg pics from a Kodak C875 now? I can stick my memory card in the iMac and import them that way, but iPhoto will not import the pics from the camera.

    Why does iPhoto not recognize the .jpg pics from a Kodak C875 now? I can stick my memory card in the iMac and import them that way, but iPhoto will not import the pics from the camera.

    There have been many issues reported with Kodak cameras - serach the forums for them
    Actually the best practise is to use a card reader to import your photos, verify that they are imported ocrrectly and wait at least one backup cycle and then use the camera's format command to reformat the card and erase it - this assures no lost photos and always having the card properly formatted
    LN

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • Hi Apple friends, my question is regarding, the last iOS 6.1 upgrade, why it include the LTE 4G to the iPad4 and iPad Mini with Telcel in Mexcio, and Why it was not for the iPhone 5?, when Apple will enable this feature LTE 4G on the Iphone5 to Telcel?

    Hi Apple friends, my question is regarding, the last iOS 6.1 upgrade, why it include the LTE 4G to the iPad4 and iPad Mini with Telcel in Mexcio, and Why it was not for the iPhone 5?, when Apple will enable this feature LTE 4G on the Iphone5 to Telcel?

    And Apple won't tell you. All they will tell you is what countries are supported for LTE right now. You can express your interest to Apple via their feedback pages, if you wish:
    http://www.apple.com/feedback/iphone.html
    but you will not receive a reply. It may be waiting on Telcel to approve. They may not feel that their LTE network is robust enough to handle that much load yet. But I'm just guessing. We'll just have to wait and see what develops.
    Regads.

  • Why does Canon NOT support the Canon Utilities software?

    The Canon Map Utility software can not detect my Canon GPS Receiver GP-E2.  Over the phone, Canon "Customer Support" had me uninstall all 10 Canon Utilities that I had previously installed, and then let me install only 8 older versions of Canon Utilities.  And, the Canon Map Utility software STILL could not detect my Canon GP-E2. 
    Why doesn't Canon have ANYONE who knows the Canon Utility software?  The first support rep had NEVER used any of the software!  And the second support rep, whom I was transfered to by a Supervisor who told me that this was the most experienced support person for the software, has only used the software ONCE!
    Why does Canon NOT SUPPORT Canon software?????
    As an old friend used to always say,
    "Keep Looking Up!"
    Calen

    When I use the GPS-E2 on my camera, the pictures have are geotagged.  It's when I try to use the GPS log that Map Utility has a problem.  I like the idea of recording where I went, not just where each picture was taken.  That way, I can see where I found nothing to take pictures of.
    Calen
    As an old friend used to always say,
    "Keep Looking Up!"
    Calen

  • Why does firfox not display the footer on my web site when IE9 does?

    I have made a web site, firfox does not display the whole page content... why wont it show the footer?
    http://home2.btconnect.com/kcaringagency/
    (test site)

    The footer is being displayed for me on Firefox 5.0 and 3.6.18 - to the right side of the rest of the page content.
    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Why is RoboHelp not displaying the required data content of .chm when linked as Help in my App ?

    Gorgeous Hello All,
    Has anyone encountered the below-said show- stopper. Another BIG TIME help required, will help me in tremendous fashion.
    Am using Adobe RoboHelp, Version 10 and IE version being 10.
    In my local machine :
    1.)I have completed my technical writing courtesy Design editor
    2.)Generating chm File : View -> Pods –> Single Source Layouts -> Right Click on Microsoft HTML Help -> Tagged Set as Primary Layout
    3.)Generating Primary Layout : File -> Generate -> Primary Layout (Microsoft HTML Help)…
    4.)Viewing Primary Layout : File -> View -> Primary Layout
    Everything works FANTASTICALLY till here with the required output (as Hide, Back, Refresh, Home, Print, Options, Contents, Index, Search, Glossary and with the data contents)
    Show Stopper, At my Application Server :
    5.)I copy the entire robohelp project folder from my local machine to my application Server path
    6.)My Application has been developed in ASP .NET, Version 4.0.
    7.)Help link has been created in this application wherein here the file name of < >.chm has been linked in the code to be read from the  Server’s RoboHelp project folder\!SSL!\ Microsoft_HTML_Help\
    8.)I login into my above-said application -> click on the Help page -> Displays the required structure /buttons as Hide, Back, Refresh, Home, Print, Options, Contents, Index, Search, Glossary
    a.)Clicking on any of the Books or Topics appearing beneath Contents : The System prompts out with error cautionary message called “ Navigation to the webpage was cancelled. What you can try: Retype the address ”
    *** This is a huge SHOW-STOPPER. I spent plenty of hours on this, but unable to deciper with a solution at all) ***
    ( Note : Am able to directly open and read the required data contents by Clicking on any of the Books or Topics appearing beneath Contents from Server’s RoboHelp project folder\!SSL!\ Microsoft_HTML_Help\ < >.chm )
    Why is the RoboHelp not displaying the required data contents of <>.chm when linked as Help in my Application ?
    Cheese – Vipin Nambiar

    If you looked at the error message and searched the forum, you should find the answer as this is a problem that started in 2005. You should not run CHM files from a server and cannot without editing the users registry. See the page below.
    http://www.grainge.org/pages/authoring/chm_mspatch/896358.htm
    All along your questions have been based on webhelp, why suddenly are we going go CHMs.
    See Snippets on my site for the correct form of help to use in different scenarios.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Need to Export a hypertext index list or Table of Content when saving as pdf

    I have a catalog that is being converted from print to web and will be exported as a pdf and then converted to a flip book using a flash template. The flash template does have this capability and pdf files can and do import table of content text for navigating the pdf document. What I need to do is to take the Table of Contents list from the catalog (which I have tagged with hyperlinks) and have it appear in the pdf as a text-based table of contents with hyperlinks. I saw one post discussing "InDesign's index feature" but don't see that anywhere in my app. I am using CS3 currently. (been told to stay away from 4 til bugs are worked out of .ai and dreamweaver).

    You've stayed away from CS4 so long that CS5 will be shipping in the few weeks.
    As for your question, I'm not really sure what you're asking. Who's doing this converting for you?
    Bob

  • Why does it not use the index?

    L.S.,
    We are using a table called IT_RFC_REGISTRATION. It is a relatively big table for our application.
    Its primary key is RFCNR, each new RFCNR getting the next value.
    Now for my intranet report I am interested in the last 40 records. But when I execute:
    SELECT *
    FROM IT_RFC_REGISTRATION
    ORDER BY RFCNR DESC
    the query takes ages to execute.
    When I do this:
    SELECT RFCNR
    FROM IT_RFC_REGISTRATION
    ORDER BY RFCNR DESC
    the result comes instantaneous because this query uses the index on RFCNR.
    Why does the former query not use the index to execute? It should be much faster to fetch ROWIDs from the index end to start and use those to get the records, than to load all the records and then sort them.
    Is there a trick with which I can use a join of the latter query and the former query to speed up the result?
    Greetings,
    Philbert de Zwart,
    Utrecht, The Netherlands.

    The difference you see in query run time is based on the amount data being sorted, then returned. In the first query, a full table scan is faster since if the index was used, Oracle would have to do a lookup in the index, get the rowid's and go look up the data in the table (TWO disk i/o's). It's faster to just scan the entire table.
    Indexes will generally not be used unless you have a where clause. If you only need a few fields from the table, you could include them all in an index. For instance, if you only need RFCNR & DESC create a concatenated index on those two columns and then only a scan of the index is required (very fast).

  • QR Codes Why does adobe not include a State area to fill in.

    QR Codes Creation: Why does adobe  indesign not include a State area to fill in.

    Make a feature request at the link below. With InDesign CC, updates can happen more often:
    Adobe - Feature Request/Bug Report Form

  • Why does iTunes not refresh the Music Library if files are updated?

    What if have already a nice library SYSTEM built for my music, and every time I add 30-50 files to 30-50 different locations, iTunes requires me to add the same song again... What if I am doing this updating for 3 hours and I can't remember anymore which songs I added to my Brazilian compilation folder? Why can't iTunes update the library with added files? I see this question popping up on a lot of forums. This is very cumbersome. I keep my international music collection organized by country of origin. If I let iTunes consolidate my music, it will put everything into one big folder organized by name of artist. I definitely don't want to let the program do that. I would lose all my work and all my system.
    Once I imported the folder system into iTunes though as a reference, it does not recognize if there was a change, music added, music deleted, music reogranized. It doesn't make sense to delete everything from the iTunes Music Library every time I update my music collection.
    Where is the solution? I want iTunes to find the changes and apply it to my Music Library automatically.
    I can live with my iPod only having the files in one big library, since I mostly use it for shuffle play anyway, but I want to keep my originals in an orderly manner based on style, country of origin, etc. I don't want to end up having all my files renamed and moved.
    So I need iTunes to refresh my Music Library by looking at the original folder I imported the list from, and make the necessary changes.

    I guess then this is a serious shortcoming of iTunes... Up till this point I owned an RCA Lyra MP3 player and it had no problems whatsoever doing these things. I guess, after seeing how iTunes and iPod works, I'd rather return to Lyra if it had an 80 G version. The only thing that still keeps me with iPod is the capacity.
    It seems like that iTunes is a very cumbersome program and it tries to be so much user friendly that it even tries to eliminate the human element. Sometimes, it makes sense to keep files organized in specific manner. Especially when there is work involved and productivity.
    I guess I will just delete everything from the play list and read in the main folder every once in a while, leaving the machine working on it during the night or something, then another night, it will refresh my iPod. That's the only solution I see right now.
    It is interesting that a huge program like iTunes cannot do what a small one like Lyra can. And I even read in user groups that some people created programs for this problem, but those programs don't work with iTunes 7 well yet, so I am stuck with the manual updating or the brutal deletion and re-reading.
    Thank you for the answer. At least I know what not to expect from the program. I just use it for only one purpose: load music onto iPod, then forget about it. It quite an unuseful program for me otherwise.
    G5   Mac OS X (10.4.8)  

  • Why does Apple not support the rSAP - Remote SIM Access Profile - for connection to car handsfree via Bluetooth

    Hello community,
    I just ordered a new car and it comes with a bluetooth based handsfree installation based on rSAP (remote SIM access profile). I learned that rSAP is the ideal thing to eliminate the unwanted radiofrequency radiation (RFR) inside the car. Now while googleing I also learned that iPhone on iOS does not support rSAP.
    I would like to point to the following page which shows some more detailed information on the rSAP topic:
    http://paulroberts69.wordpress.com/2011/02/28/android-2-2-and-rsap-compatibility /
    I find rSAP a very usefuly thing, if it really brings the GSM radiation level down inside the car and allows the full use of all GSM functions by the rSAP premium handsfree kit built into the car. I absolutely do not understand why it is not already available with iOS.
    From several web sources I understand that rSAP is available for jailbroken iPhones. That means, the chips inside the iPhone would support a rSAP service. Therefore my question: will it become available with iOS 6?
    Or do all the folks at Apple drive old cars/brands and don't even think of the rSAP feature? Can we somehow start to get a hearing by the Apple developers? According to my knowledge, rSAP is implemented with all premium handsfree factory units of the VW brands - Audi, VW, Skoda ... This should make a relevant user base!
    Any others with same wish and/or experiences? Comment here please!
    Regards,
    Olaf

    Hi Meg,
    could be several things:
    1. they forgot?
    2. none of their team members drives any VW branded car?
    3. nobody cares about the radiation inside the car?
    4. all have plugin holders for the iPhone?
    I am just surprised that rSAP is offered by a premium car maker, but Apple seems ignorant about its support.
    I am mostly concerned about the radiation when I use regular hands free. But I do understand that rSAP also has some limitations (only access to SIM contacts and other things, Wikipedia DE has a good full report, Wikipedia EN is much shorter).
    Regards,
    Olaf

  • Using Aperture to create a slideshow why would it not include the captions when burnt to CD?

    I am trying to burn a slideshow to CD but when I do the captions I have included are not shown. Anyone got any ideas what I am doing wrong or not even doing? Any suggestions would be helpfully.

    I am trying to burn a slideshow to CD but when I do the captions I have included are not shown.
    How are you burning the Slideshow to CD? Are you using the "Export" button in the Slideshow view to render a video of the Slideshow, or are you exporting the images of the Slideshow using the "File > Export" command?

Maybe you are looking for