Entry entry not added to the automatically generated table of contents

Using RoboHelp HTML 11.

I'm linking a Word document into my project and have it automatically create the Table of contents. I create new pages from the Word title 1 and title 2.

As a general rule, a section in Word will be like this:

Heading 1

Body

Section 1.1

Body

Section 1.2

Body

In the table of contents, it will create a book labeled "Heading 1" and pages for 1.1 and 1.2 position position. There is no page for heading 1 or the body of the text that goes there.

I can manually add the title page 1 of the book, but I suspect that I don't have to. Y at - it a setting I use wrong? Or a tip or solution?


Thank you.

-Shawn

If you click on the book for heading 1, it go to the right place and show the body of the text?

Separate headings are created for heading 1, section 1.1. etc., or is - this a topic with the table of contents goes to the required place?

See www.grainge.org for creating tips and RoboHelp

@petergrainge

Tags: Adobe

Similar Questions

  • Keep the changes to the automatically generated html wrapper

    Hello

    In flex builder 3, I put in place of a wen app using an eternal interface to javascript.

    For dev and test that I just want to burst the JS generates functions on the page wrapper which Flex auto, but of course when I change the wrapper page get more written. How to stop the html page wrapper of regeneration each time.

    Thanks in advance
    Dean

    Thank you

    I also found that you can edit the index - template.html, inside the html-template folder. What you add to this template will be added to the automatically generated html wrapper.

    I added a few JS, iFrame and Flash Vars and they added for debugging and normal envelopes. Ideal for testing

    Thanks again

    Dean

  • Apply ViewCriteria not added to the request

    JDeveloper 11.1.2.2

    I have a ViewCriteria which is supposed to be applied to a ViewObject, but I get an error "attempt to define a parameter name that does not intervene in the sql code.  I know that the ViewCriteria is applied, but for some reason, the 'criteria' in the ViewCriteria are not added to the query that is sent to the database.

    Here's the method where the error occurs:

    public List<SelectItem> getCategorySelectItems()
        {
            categorySelectItems = new ArrayList<SelectItem>();
            
            BindingContainer bindings = ADFUtils.getBindingContainer();
            DCIteratorBinding dcIteratorBinding = (DCIteratorBinding) bindings.get(ITERATOR_NAME_CATEGORY_SITEID_PHASEID);
            MytrainCategoriesVOImpl mytrainCategoriesVO = (MytrainCategoriesVOImpl) dcIteratorBinding.getViewObject();
            
            mytrainCategoriesVO.setbind_SiteId(GuidoUtils.getSelectedSiteId());        
            mytrainCategoriesVO.setbind_PhaseId(selectedPhaseId);
            
            ViewCriteriaManager vcm = mytrainCategoriesVO.getViewCriteriaManager();
            String[] vcs = vcm.getApplyViewCriteriaNames();
            for(String vcname : vcs){
                logger.finer("Applied ViewCriteria: " + vcname);
            }
            
            mytrainCategoriesVO.executeQuery();
            
            while(mytrainCategoriesVO.hasNext())
            {
                MytrainCategoriesVORowImpl mytrainCategoriesVORow = (MytrainCategoriesVORowImpl) mytrainCategoriesVO.next();
                SelectItem newSelectItem = new SelectItem(mytrainCategoriesVORow.getCategoryId(), mytrainCategoriesVORow.getTitle());
                categorySelectItems.add(newSelectItem);
            }
            
            return categorySelectItems;
        }
    

    The debugging part where I write on the getApplyViewCriteriaNames() shows that the criteria of the "site_id" and "phase_id" applies, but does not query SQL that is sent to the server contain the ' where phase_id =: bind_PhaseId "section, even if the query contains the" where site_id =: bind_SiteId "section.

    Any ideas why it would apply a ViewCriteria, and not the other, even if the ViewCriteriaManager said that the two criteria are applied?

    One problem I have seeIs you do all this in the view controller, while you should do it in the model layer. Depending on how the view criteria is build (ignore nulls, required binding variable) the sql generator fails to messages of where clause.

    What might happen is that one of your bind variables are set to null without your knowledge. To be sure that your variables are set correctly, you must save the message to the executeQuery method. an example on how to do this can be found here http://wp.me/pcBZk-2d

    Third method exports the query and its parameters.

    Timo

  • Is it possible to use the getObjectsUnderPoint of a DisplayObject that is not added to the display list?

    My situation:

    I have a DisplayObject (objA) added to the display list and a DisplayObjectContainer (objB) not added to the display list. When objA receives a MouseEvent.CLICK event, is it possible to use the localX and localY to the event of objA to get objects under the same point in objB?

    Sample:

    var objA:Sprite = new Sprite();

    objA.graphics.beginFill (0);

    objA.graphics.drawRect (0, 0, 100, 100);

    objA.graphics.endFill ();

    addChild (objA);

    var objB:Sprite = new Sprite();

    var childA:TextField = new TextField();

    childA.text = "This is the child.";

    objB.addChild (childA);

    objA.addEventListener (MouseEvent.CLICK, handlerClick);

    function handlerClick(e:MouseEvent):void {}

    var pt:Point = new Point (e.localX, e.localY);

    var objs:Array = objB.getObjectsUnderPoint (pt);

    trace (objs. Length);

    }

    so your test/trace environment can deliver it.

    Use the following code, publish your swf file and test the swf file in your standalone player (or publish a html and swf and test it in your browser).

    package {}

    import flash.display.Sprite;

    import flash.events.MouseEvent;

    to import flash.geom.Point;

    import flash.text.TextField;

    SerializableAttribute public class extends Sprite {Main2

    private var _objA:Sprite = new Sprite();

    private var _objB:Sprite = new Sprite();

    private var childA:TextField

    public void Main2() {}

    _objA.name = "a";

    _objA.Graphics.beginFill (0xdddddd);

    _objA.Graphics.drawRect (0, 0, 100, 100);

    _objA.Graphics.endFill ();

    addChild (_objA);

    _objB.name = 'B ';.

    _objB.Graphics.beginFill (0xdd0000);

    _objB.Graphics.drawRect (0, 0, 100, 100);

    _objB.Graphics.endFill ();

    _objA.addEventListener (MouseEvent.CLICK, handlerClick);

    Stéphane = new TextField();

    childA.name = 'tf ';

    _objA.addChild (childA);

    childA.multiline = true;

    }

    private void handlerClick(e:MouseEvent):void {}

    var pt:Point = new Point (e.localX, e.localY);

    var objs:Array = _objB.getObjectsUnderPoint (pt);

    childA.text = "";

    for (var i: int = 0; i

    childA.appendText(objs[i].name+"\n");

    }

    }

    }

    }

  • Photo not added to the quick Collection when you click marker

    Recently I have not been able to add photos to a quick collection, when you click on the marker. The marker provides information, but the photo does not appear in the quick collection. This problem occurred at the same time, I couldn't remove the photos in the quick collection that had been added. I had to remove these photos using the menu system. I've upgraded to the new version of Lightroom 5 yesterday thinking that would solve the problem. I still have the problem so I wonder if this is a setting that I missed. Quick collection markers button is enabled in the display options and the button and change when you click them... The thumbnail of the photo is not added to the quick collection.

    It seems that you no longer have the quick Collection, referred to as a collection of target. Is there a small symbol '+' next to the name of the collection? If this isn't the case, you have another collection in your designated collection list.

    To fix, right-click the name of the quick Collection and click the option "set as target Collection.

  • Generated table of contents contains errors in the sections

    I'm working on a large document that was created by someone else. When I try to update the table of contents, there are a few spelling mistakes that are not in the headings in the body of the document (I corrected, but the table of contents are acting as errors are still there).

    For example:

    In my paper on page 32, there is a section "Fieldbus Protocol" (he was previously misspelled, such as ' Protochasl ' and I fixed it)

    It shows in the generated table of contents: 32 Fieldbus Protochasthe < < so this is to show the 'old' spelling, even though I've updated the table of contents with the page layout > Update Table of contents command.

    Is there a code behind (like HTML) for InDesign text which is perceived by the TOC generator? It acts like it is looking 'old' versions of these positions.

    Thank you!

    are you sure that this section of paragraph style is used to build the table of contents?

    There may be some invisible paragraph style which is then used to generate a theTOC

    You should check the exact name of the paragraph style that was used in your table of contents

  • Bookmarks created automatically based on the word 2013 Table of contents.

    Bookmarks created automatically based on the word 2013 Table of contents.  In the earlier version of Word, the Style of the Table of contents built into bookmarks when PDFing.

    I thought about it.  There is a new check box, you must activate in 2013 of Word when exporting to PDF format that allows to convert the elements of bookmarks when PDFing.

  • FrameMaker 2015 is no longer generate tables of contents (TOC)

    All of a sudden, some people in our team cannot generate tables of contents in FrameMaker 2015, while others may still. We could all generate TOCs without problem until this week (at least, this week is when we noticed the problem). Are there known issues with the 3.1 update that was released in April (I think)?

    When we select Add > > create Standalone TOC, FrameMaker creates a TOC file and adds it to the book, but the file is completely empty. When we try to update the TOC file, nothing happens. When we try to create/update fakes with other books and models, same thing.

    Other people are able to create/update TOCs with these same files. We have not been able to determine what is the difference which is causing the problem.

    Those of us with the problem all seem to have 2015 FrameMaker version 13.0.3.495 installed. But at least a person who has the same version of hotfix can create/update TOCs. (We are all on Windows 7, 64-bit).

    Any suggestions are greatly appreciated. Thanks in advance,

    Jason nichols

    Jason,

    We have introduced an OCD related bug in update Fm 13.0.3 where in unstructured books OCD is not generated in structured mode.

    As a solution, he is requested to work in unstructured for unstructured books Mode:

    1. edit > Preferences > Interface product > select FrameMaker > restart FM

    2. open the book > Update > should work

    We work for a quick update for the same thing.

  • How to set different fonts for numbers in the titles and tables of contents

    Hello

    I noticed some people to use a different font for the numbers in the titles and tables of contents to get an extra magic. Is it possible to automate the use of fonts in paragraph styles?

    Oh and suggestions on which fonts would be a good thing for numbers?

    Thank you!

    Furthermore, you must doany of this fancy stuff if you use an OpenType font that made OSF glyphs (and if you are not you will need to set the font as part of your style). Just head on to the style definition and enable OSF there OpenType features section.

  • Demarshalling xml with the automatically generated class JAXB2.0 file does not work in jdeveloper 11.1.1.9

    I'm trying to familiarize themselves with JAXB in jdeveloper. I am facing some problems. There are a few test cases for which he works, for others it is not.

    Case 1:

    XML file is created manually. Respective java class to xmlelements is created manually. There is no ObjectFactory.java or jaxb.properties. Demarshalling this XML file works fine.

    Case 2:

    XML file is not created manually. All the respective java classes including ObjectFactory.java and jaxb.properties are generated using the widget ' JAXB 2.0 content XML Schema model "jdeveloper. I deleted ObjectFactory.java, jaxb.properties, and package - info.java. Demarshalling xml with this class file works fine.


    Case 3:

    Even in case 2, but this time I do not delete or change whatever it is generated and used as it is. It does not work. Get the following error.

    Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true
    javax.xml.bind.UnmarshalException
     - with linked exception:
    [Exception [EclipseLink-25008] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.XMLMarshalException
    Exception Description: A descriptor with default root element rss was not found in the project]
      at org.eclipse.persistence.jaxb.JAXBUnmarshaller.handleXMLMarshalException(JAXBUnmarshaller.java:816)
      at org.eclipse.persistence.jaxb.JAXBUnmarshaller.unmarshal(JAXBUnmarshaller.java:109)
      at com.example.jaxbintro.JAXBExampleClass.main(JAXBExampleClass.java:36)
    Caused by: Exception [EclipseLink-25008] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.XMLMarshalException
    Exception Description: A descriptor with default root element rss was not found in the project
      at org.eclipse.persistence.exceptions.XMLMarshalException.noDescriptorWithMatchingRootElement(XMLMarshalException.java:129)
      at org.eclipse.persistence.internal.oxm.record.SAXUnmarshallerHandler.startElement(SAXUnmarshallerHandler.java:208)
      at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1598)
      at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:455)
      at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:401)
      at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:239)
      at org.eclipse.persistence.internal.oxm.record.XMLReader.parse(XMLReader.java:157)
      at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:688)
      at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:271)
      at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:258)
      at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:218)
      at org.eclipse.persistence.oxm.XMLUnmarshaller.unmarshal(XMLUnmarshaller.java:306)
      at org.eclipse.persistence.jaxb.JAXBUnmarshaller.unmarshal(JAXBUnmarshaller.java:106)
      ... 1 more
    

    The project is included in the annex to this issue. It is ready for use. More information in the commentary to the java code. The main class is JAXBExampleClass.java.

    What is the problem with case 3?

    OK, I've been messing around with codes generated a bit and found the solution. The problem is that the value of the XmlSchema namespace had error in package - info.java class. There is no specified XmlSchema namespace in the XML file. Thus, the given value in the package - info.java was wrong.

    @javax.xml.bind.annotation.XmlSchema (namespace = "http://www.example.org", value / / wrong, set it to an empty string or that of your xml file, if it has any)

    elementFormDefault =

    javax.xml.bind.annotation.XmlNsForm.QUALIFIED)

    package com.example.jaxbintro.xmlerror;

    After you set the namespace to the empty string, since my xml file do not have one, code ran very well.

    @javax.xml.bind.annotation.XmlSchema (namespace = "",)

    elementFormDefault =

    javax.xml.bind.annotation.XmlNsForm.QUALIFIED)

    package com.example.jaxbintro.xmlerror;

    The file package - info.java can also be removed and it will work. For more details on the package and XmlSchema annotated level, what information on the package class is for, be found in the following link.

    https://JAXB.Java.NET/NoNAV/jaxb20-FCS/docs/API/javax/xml/bind/annotation/XmlSchema.html

  • Bullet image file not added to the Webhelp folder

    I just updated an older project to my current version of RoboHelp 8. The gif file I use for an image of the ball is not be added to the folder Webhelp when I generate Webhelp.

    The image is correctly listed in the css (style list: url ("Bullet 3.gif")) and in the style of list of RoboHelp (LI + list style: url ("Bullet 3.gif").) It also seems to have been added to the images of the project when I look in the image list on the pod project manager.

    The ball is displayed correctly on the drawing page and when I click on the preview of glasses icon.

    I tried to add the ball to the images on the Image dialog box and re-add the navigation for this style in the Styles dialog box.

    I suspect, there could be a problem in the previous version when the image has been added, not in the project, but a different folder, folder but the file is now in the project folder and I went through it in this place, everywhere wherever I can think of to convince Robohelp to the location of the current file.

    Anyone know how can I get RoboHelp to add this file to the folder of Webhelp?

    Thank you

    John

    Hello

    Maybe it will help if you try to add the Image to the list of files of luggage. Try right click on the file folder of luggage (in view of the traditional project manager) or the project files folder (in the most recent global view) and choose new > file of baggage. Then choose the image that seems to be missing.

    Even if it is already there, it doesn't hurt anything to include it as baggage.

    See you soon... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7 or 8 times now - $24.95!

    Adobe Certified RoboHelp HTML Training

    SorcererStone blog

    RoboHelp EBooks

  • Windows Vista will not start after the automatic installation of the patch Ms.

    My Dell laptop does an automatic installation of the latest MS patches (12/08/10) and now he can't boot into windows.  All tests show that the material is fine, but an error at the end of the "bad update patch" said test results I can not even to go back to a previous restore point.  This happened to me the year last on my desk... same thing, but it's XP which could not start after an automatic update for the Member States.  Dell technical support told me that MS knows what is happening, but it is not supposed to be public knowledge.  I need to know if there is a fix, in addition to erase everything and do a complete reinstallation of the operating system.

    Follow these steps to try to solve your problems of boot.

     

    Restore point:

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    Do Safe Mode system restore, if it is impossible to do in Normal Mode.

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    http://www.windowsvistauserguide.com/system_restore.htm

    Read the above for a very good graph shows how backward more than 5 days in the System Restore Points by checking the correct box.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

     

    If the system or Mode restore safe work not and you do not have a Microsoft Vista DVD, make a repair disc to do a Startup Repair:

    Download the ISO on the link provided and make a record of repair time it starts.

    Go to your Bios/Setup, or the Boot Menu at startup and change the Boot order to make the DVD/CD drive 1st in the boot order, then reboot with the disk in the drive.

    At the startup/power on you should see at the bottom of the screen either F2 or DELETE, go to Setup/Bios or F12 for the Boot Menu.

    When you have changed that, insert the Bootable disk you did in the drive and reboot.

    http://www.bleepingcomputer.com/tutorials/tutorial148.html

    Link above shows what the process looks like and a manual, it load the repair options.

    NeoSmart containing the content of the Windows Vista DVD 'Recovery Centre', as we refer to him. It cannot be used to install or reinstall Windows Vista, and is just a Windows PE interface to recovering your PC. Technically, we could re-create this installation with downloadable media media freely from Microsoft (namely the Microsoft WAIK, several gigabyte download); but it is pretty darn decent of Microsoft to present Windows users who might not be able to create such a thing on their own.

    Read all the info on the website on how to create and use:

    http://NeoSmart.net/blog/2008/Windows-Vista-recovery-disc-download/

    ISO Burner:http://www.snapfiles.com/get/active-isoburner.html

    It's a very good Vista startup repair disk.

    You can do a system restart tool, system, etc it restore.

    It is NOT a disc of resettlement.

    And the 32-bit is what normally comes on a computer, unless 64-bit.

    See you soon.

    Mick Murphy - Microsoft partner

  • Metadata not added to the page source

    I spent hours to update each dialog box page darned on my site, which has versions of phone, Tablet and desktop.  Each page has its own title (which added to the source code), keywords and description (or are added to the source code.  I found that the metadata did not appear in the source when I began to submit to search engines and was immediately informed that my site has no description of metadata or keywords.  I went to the http://truehdfitness.com/site and seen my source code.  Not a single keyword or an anywhere.on description

    What the devil I'm doing wrong?  I could have created the code of metadata in a Notepad file and made a copy page for versions of html on my site, but I don't want Muse clear every time I do a little change on the site... so, how in the world to get to add keywords and descriptions to the source for pages?

    Thanks for your help!

    Deltombe

    Okay, I don't know what happened, but some of my pages stored metadata and some did not.  Whatever it is, I saw that hand over the information in the page properties box, save the site, and do an ftp transfer (after each page is set) is loading the metadata about the site.  There may be a workaround, but it works.

  • Users blocked in the cloud of GoTo connector, not added to the list of registered

    I use the connector of GoTo cloud for a few months with no problems and today I noticed that eight users are currently standing on the step of cloud connector and not crossing is not to the next step and therefore are not registered for the webinar in GoTo.  I double checked the time configuration and evaluation on the front of the steps, and it is not all errors.  No idea why this happens and the troubleshooting of what I should try? I had to change my password in Eloqua yesterday and also wanted to confirm that it could not cause the connection GoTo to stop working?

    Thank you
    Rachel

    cloudconnector_error.png

    Hi Rachel,

    If you have changed your password in Eloqua, but not in the connector, that would cause.  Just go in the connector and the change of your password as well as members should begin crossing again.

    T.J.

  • The device does not appear in the menu generator of folio

    Hello

    I use a new Samsung Galaxy Note 10.1 (2014 edition). The device does not appear in the menu designer folio when I try to do a test. You have an idea?

    My computer: MAC OS 10.8.5 with InDesign CS6 8.0.2

    Samsung Galaxy Note Note 10.1 2014 edition, 4.3 Android

    Thank you

    (You can answer in french or English)

    Thank you Bob for you answers.

    My problem is solved.

    The advanced options menu is hidden on the new tablets Galaxy Note 10.1.

    To bring up this menu go to the menu "about the device" and press the number of the model 7 times.

    The advanced options menu appears. In this menu, you need to turn on USB debugging.

    Fact.

Maybe you are looking for

  • Satellite C660 PSC1JE - 8 GB RAM upgrade problems

    Fellow owners of Toshiba, I have a Satellite C660-PSC1JE-00Y00XHU with 3 GB RAM (1 + 2) I want to go to 8 GB. I went out and bought 2 x 4 GB, but so far no of the below those worked (the computer restarts or stop):http://www.Amazon.com/Kingston-Techn

  • USB ports do not work on Satellite M-series

    None of the USB ports work on my laptop. OS is Win XP SP2. When the system returns settlement she gives a pop-up error message "usb 1 post does not work. Please remove the USB plugged in this USB port.I tried updating BIOS, chipset, uninstall reinsta

  • Qosmio X 500-110 - where can I buy it?

    Wher CAN Ibuy Qosmio X 500-110Reference number: PQX33E-00W00YG3? The closest provider in EMEA or in Europe? Site or its price? Thank you

  • Windows 7 Photo Viewer cannot run, prompting you to "running the server failed.

    When I try to open any photo file type that is supported by the Windows Photo Viewer, impossible to open the photo and I ask you with 'failed execution of the server. Any ideas?

  • Change the certificate used by a Cisco 3850

    I have a new L3 3850 switch. He had a self-signed certificate installed when I first started the switch. The certificate is displayed either 512 or 1024 in length. I would like to create a key of 2048 in length. Can I issue the command generated rsa