Change Table of Contents Expander Icon

Is it possible to change the Expander Icon [>>] to
actually read "Table of Contents".

Rh is using Word's default TOC style.
If you are generating using the project's CSS, or any other CSS, then you are stuck with fixing each document.
If you generate to a Word template, then open the template and modify the TOC style to be left aligned. I just tried it and it works fine.
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • How to change table of content font in captivate 6

    Hi There,
    Can somebody please suggest me how to change table of Content Text font English to Arabic in Captivate 6 and which font supports Arabic language.
    Please refer below image, highlighted text font should be changed.
    Looking forward for help.
    Thanks,
    Srikanth

    The weird sliding navigation is Apples pride and joy!
    That TOC allows you to slide between chapters, sections and pages.
    iBooks Authjor was designed to do what it does and what Apple wanted it to do.
    Some things can be changed during the books production,  but the " weird navigation"  is not something you can change to do what you want.
    iBooks Author is does not produce ePubs.. at least not as "ePub" is known from Pages, inDesign etc,.
    If you want what is available in ePubs.. then iBooks Author is not the application to produce it.
    You could drag a section page above chapter on and create an index type page using book marks for links - but whats the point? 
    People using iPads and familiar with iBooksAuthors special way of book presentation.. are quite happy its so easy to use.

  • How do I customize the Table Of Contents Expand ( ) button?

    I have a client that would like to change the color of the TOC Expand (>>) button which is by default a light grey. I have tried changing all the options in the Skin Editor under Table of Contents, Playback Control and Borders, and nothing has worked. Am I missing something obvious or is there no way to customize this button?
    Thanks in advance!

    Hello,
    You might not be able to change the color of Expand button but you can add your own customized images.
    1) Launch Adobe Captivate 5.5 project
    2) Click on Project -> Table of Contents
    3) Click on the Setting button
    4) Under TOC settings, you have Expand Icon and Collapse Icon sections
    5) Click on "Folder button" and browse your picture
    Screenshot :
    This is how your output will look :
    Hope this helps !!
    Thanks,
    Vikram

  • "Table of Contents" web part - How to have expand/collapse buttons? (I can use only CSS/JavaScript/JQuery)

    Hi there,
    I have a Table of Contents web part which is great. Is there a way so it shows only top level sites and then one can expand or collapse any top level site to see/hide the subsites?
    As of now it shows
    HR Parent site
    - HR sub site 1
    - HR sub site 2
    IT Parent site
    - IT sub site 1
    - IT sub site 2
    What I want is 
    + HR Parent site
    + IT Parent site
    So one can expand or collapse on demand.
    Any relevant JS/CSS/JQuery code?
    Thank you so much.

    Hi,
    According to your post, my understanding is that you want to expand or collapse the level site for the table of contents web part.
    I have made a simple code demo below to achieve this scenario, you can refer to it.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    var iconCollapse = "/_layouts/images/collapse.gif";
    var iconExpand = "/_layouts/images/expand.gif";
    $("div[id='WebPartWPQ2'] li ul").hide();
    //ugly way
    var $t = $("#WebPartWPQ2 div").children("ul").children("li").children("div");
    $t.each(function(){
    //console.log($(this).html());
    $(this).attr("style", "float: right; margin-right: 297px; line-height: 8px;");
    $(this).css("display","inline");
    $("<a src=" + iconExpand + "></img>").insertBefore($(this));
    $("a[class='min']").click(function()
    var img = $(this).children();
    //Traverse the DOM to find the child UL node
    var subList = $(this).siblings().children('ul');
    //Check the visibility of the item and set the image
    var Visibility = subList.is(":visible")?img.attr('src',iconExpand):img.attr('src',iconCollapse);
    //Toggle the UL
    subList.slideToggle();
    </script>
    Note: Yous should change the Web part ID and the css style to fit your environment.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Change the table of contents in Adobe Presenter 9

    It appears that Presenter automatically creates the tables of contents for a Powerpoint presentation based on the slide title. Is there a way to modify the name that appears with a TOC navigation without changing the slide title?
    I would also like to know if it's possible to structure the TOC so that there are main topics and sub topics. For example, in Captivate, you can modify the TOC by clicking on the arrows in the menu to push categories under one another, like an outline:
    Main Topic
         Subtopic Slide 1
         Subtopic Slide 2
    Main Topic 2
         Subtopic Slide 1 
         Subtopic Slide 2

    Presenter doesn't have the same functionality for the TOC as Captivate. There is some wizardry that can be done if you want to adjust the look of the slide list.
    Work around was discussed in this thread: http://forums.adobe.com/message/1970468#1970468

  • Finished script: Use grep find/change to fill in a supplied table of contents

    This script is now complete, and has been the subject of most of my previous posts. Just in case anyone wanted to know what the finished script ended as, here it is.
    Thanks so much to all. A lot of really helpful folks on this board are very responsible for the success of this task. This script is to be one of hopefully many in the creation of our records. But it's a huge leap forward. Thanks again to everyone that helped.
    Cheers,
    ~Nate
    Task:
    Automatically find town names in listings, and fill in table of contents template on page 2 accordingly.
    Example of page 2 toc, initially:
    Example of a page of content. The town names are what need to be referenced on the TOC:
    Example of page 2 toc once script is finished:
    Because of the need to include the transaction dates on the TOC (comes as a provided, tagged-text file), a simple Indesign-generated TOC can't be used alone.
    This script uses an Indesign-generated TOC that's on a master page called "T-tocGen" ... It then uses grep search and replaces to grab the needed information, and insert it into the page 2 TOC.
    The script will update a generated TOC and then search for an instance of a page number, and town name. The generated toc lists all included towns in the following format:
    (line start)## tab townName(line end)
    In Grep, this would be (please note, extra \ for \d and \t ... javascript needs that for some reason):
    ^\\d+\\t(.*)$
    After the script gets the info it needs from a found instance of the above, it replaces that line with "---", to prevent that line from being picked up once again.
    The script with then place the needed page number in it's rightful place on page 2, replacing the XX.
    A while loop is used to repeat the above process until there are no longer any instances of "^\\d+\\t(.*)$" present.
    Not every town runs every issue, so once the script is done, it removes all remaining instance of "XX" on the page 2 TOC.
    FINAL CODE:
    TOC replace
    This script will use grep find/change methods to apply page numbers in
    tocGen to the XX's on page2TOC.
    // define the text frame of generated TOC
        var tocGenFrame  = document.masterSpreads.item("T-tocGen").pages.item(0).textFrames.item(0);
    // udpate generated TOC ... store contents in tocGenStuff
        var tocGenStuff = updateTOCGen();
    // set variable for while loop
    var okGo = "1";
    // while okGo isn't 0
    while(okGo.length!=0)
    // get town info from tocGen
    getCurrentTown();
    // replace XX's with tocGen info
    replaceTown();
    // grep find ... any remaining towns with page numbers in tocGen?
    app.findGrepPreferences = app.changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "^\\d+\\t(.*)$";
    // set current value of okGo ... with any instances of above grep find in tocGen
    okGo = tocGenFrame.findGrep();   
    // grep find/change all leftover XXs in page2TOC
    app.findGrepPreferences = app.changeGrepPreferences = null;       
    app.findGrepPreferences.findWhat = "^XX\\t";
    app.changeGrepPreferences.changeTo = "\\t";
    app.activeDocument.changeGrep();  
    // clear grep prefs
    app.findGrepPreferences = app.changeGrepPreferences = null;
    //  functions                  //
    function getCurrentTown()
    // grep options   
    app.findChangeGrepOptions.includeLockedLayersForFind = true;
    app.findChangeGrepOptions.includeLockedStoriesForFind = true;
    app.findChangeGrepOptions.includeHiddenLayers = true;
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findChangeGrepOptions.includeFootnotes = true;
    // grep find:  startLine anyDigits tab anyCharacters endLine
          app.findGrepPreferences = app.changeGrepPreferences = null;
          app.findGrepPreferences.findWhat = "^\\d+\\t(.*)$";
    // get grep find results      
    currentGen = tocGenFrame.findGrep();  
    // store grep results content into currentLine
    currentLine = currentGen[0].contents;
    // match to get array of grep found items
    currentMatch = currentGen[0].contents.match("^\\d+\\t(.*)$");
    // second found item is town name, store as currentTown
    currentTown = currentMatch[1];
    // change current line to --- now that data has been grabbed
    // this is because loop will continue as long as the above grep find yields a result
           app.findGrepPreferences.findWhat = "^\\d+\\t"+currentTown+"$";
                  app.changeGrepPreferences.changeTo = "---";
                tocGenFrame.changeGrep(); 
    function replaceTown()
    app.findChangeGrepOptions.includeLockedLayersForFind = true;
    app.findChangeGrepOptions.includeLockedStoriesForFind = true;
    app.findChangeGrepOptions.includeHiddenLayers = true;
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findChangeGrepOptions.includeFootnotes = true;
    // find: XX currentTown .... replace with: currentLine
        app.findGrepPreferences = app.changeGrepPreferences = null;
        app.findGrepPreferences.findWhat = "^XX\\t"+currentTown+" \\(";
        app.changeGrepPreferences.changeTo = currentLine+" \(";
    app.activeDocument.changeGrep();   
    function updateTOCGen()
    //set vars ... toc text frame, toc master pag
        var tocGen  = document.masterSpreads.item("T-tocGen").pages.item(0).textFrames.item(0);
        var tocGenPage  = document.masterSpreads.item("T-tocGen").pages.item(0);
    //SELECT the text frame generatedTOC on the master TOC
        tocGen.select();
    //Update Table of Contents by script menu action:
        app.scriptMenuActions.itemByID(71442).invoke();
    //Deselect selection of text frame holding your TOC:
        app.select(null);
    //store contents of toc text frame in variable
        var tocGenText = tocGen.contents;
    //return contents of tocGen
        return tocGenText;

    Thanks for the reply.
    You are correct but the problem is there are three rows, One row is 100% black, the second is 60% black and the third is 40% black. I want to change the black to blue, the 60% black to an orange and the 40% black to a light shaded blue. In the find/change option you can select the tint you want to find and replace but yea.. does work on table cells.. oddly enough.

  • Change wording in Table of Contents

    In the Table of Contents is it possible to change the text that says "Slide Title" to something else?
    Thanks.

    I don't think Steve is talking about Slide Labels in the Properties tab.  He's mentioned Table of Contents.  I believe he's referring to the heading in the TOC that says: Slide Title
    If so, then the workaround to change this is to use the same trick that people use when localising these TOC strings for different language outputs.
    Just create a text file with the following text in it.
    [TOCStrings]
    SlideTitle=Module
    Duration=Time
    ClearToolTip=Wipe State
    BookMarkToolTip=book-marking
    NoSearch=String not found
    CurrTime=what
    Name this file as TOCStrings.ini and save it in the folder in which Adobe Captivate is installed. Default path where Adobe Captivate is installed is “C:\Program Files\Adobe\Adobe Captivate 6”.
    For more information, Please refer to the blog post
    http://blogs.adobe.com/captivate/2009/02/changing_default_captions_in_ t.html
    Rod Ward
    http://www.infosemantics.com.au/troubleshoot-adobe-captivate

  • Remove / change dots in Table of contents

    Hi guys,
    I have a table of content (standard) in Indesign.
    But under each item is a black dotted line.
    1. How can I change this dotted line to grey?
    2. Change the line style to a stripe or something.
    thanks
    Image: http://i.cubeupload.com/5thN7U.png

    In the paragraph style check the section Paragraph Rules (and use the dropdown to investigate both Rule Above and Rule Below -- I think it has the Rule Below active). Check the box or clear it next to the dropdown to turn the rule on or off.
    A tab leader is a character or set of characters (you can use spaces, for example, to spread apart dots, or combine a dot and an underscore, or a bullet and a hyphen for a decorative look) that fills the space occupied by the tab character. There's a field in either the Tabs palette or in the Tabs section of the paragraph style where you can enter the character(s) once you set the tab position and select the tab marker on the ruler.
    I prefer a custom underline (applied as a style) on the tab if you can create the look you want with ID's stroke styles because you have more control over weight and positioning than you do with the tab leader.

  • Need to delete or change default table of contents

    The default table of contents created when I imported a
    FrameMaker book is empty. I reimported the book (using a different
    option) and created a new TOC. I want to use this one in my
    project. Some questions:
    1. Can I change the default TOC to be the new (non-empty)
    one? If so, how? (Can you refer me to a topic in the RoboHelp
    Documentation?)
    2. Can I delete the default TOC? If so, how? (Can you refer
    me to a topic in the RoboHelp Documentation?)
    3. If the answers to the above questions is "no," can I just
    ignore the default (empty) one & use the new (nonempty) one
    when I generate? If so, how? (Can you refer me to a topic in the
    RoboHelp Documentation?)

    However, I thought that the blank TOC was created before I
    learned the "correct" way to import FrameMaker documents: by
    reference. So I can't say what would have happened if I had
    imported the book by reference initially. Nonetheless, I have the
    same result - a blank default TOC that I can't remove (as Peter
    points out).

  • How to change table content ...

    Hi All,
    Pl. give us soltution for the following :
    1. How to change table content of standard table ?
        (eg. mara content not from MM02.).
    2. How to add field in standard table ?
    waiting reply.
    Yusuf

    Hi  Yusuf,
    Modifying a standard table through a program using SQL statements is highly risky. However if u wish to do it programatically and not through MM02, you have the option of using BAPIs.
    Goto transaction BAPI and through the application hirarchy, goto Material Management section. There i am sure u will find some BAPIs to modify material master and they are the most stable mode of update programatically.
    Hope this helps.
    Regards,
    Aditya

  • Problem with expanded books in table of content

    I have (in RoboHelp 7) connected a topic to a book, when I go
    the the topics URL and click on "show more" the book is not visible
    in table of content. Is there any way to do this or do I need to
    create an introduction page for every book?
    Exampel:
    I have a book named "Book1.1" that is a "subbook" to "book1".
    I have connected "book1.1" to the topic "introduction for book1.1".
    When I go to the url (www.help.com/introduction_for_book1_1.html)
    and click on "show more" I can see the table of content, but
    "book1" is not expanded, so I don't know where I am in the
    structure.
    Thanks!
    /Elias

    What version of Pages?
    Peter

  • Expandable list - Table of Contents -  Please Help

    I used the code found on the following page to create an expandable list that worked great:        Expandable list :  at www.learningmovabletype.com
    I created a table of contents for our Policies and Procedures that showed the main topics and when clicked listed each policy subcategory.  The following link is for this page:http://bsacapheadstart.com/PoliciesandProcedures.html
    My company bought the Adobe CS4 package that included Dreamweaver several months ago and I am trying to create this same page using it.                          http://grantee.bsacapheadstart.com/Policies%20and%20Procedures.htm
    The problem as you will notice if you go to this page and click on the categories, is that only the first topic will expand and all the others will not.
    I have reviewed the code several times and do not see any differences between the first topic heading and the others; nor between the code that works on the first page and the page I am creating using Dreamweaver.
    I have thought about using the Spry Collapsible Panel or Accordian but it is not exactly what we want.  Besides everyone is already comfortable with this layout.
    If anyone could please help, it would be greatly appreciated! Thanks!

    Start with valid code.  It makes trouble shooting much simpler.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.grantee.bsacapheadstart.com%2 FPolicies%2520and%2520Procedures.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to create labeled table of Content with expand and collapse

    Hi All,
    Can somebody help me how to create labeled table of Content with expand and collapse as example given below:
    User1
    Template1
    Template2
    User2
    +
    User3
    Template1
    Template2
    Like when we see expand (+) and collapse (-) button when we click on 'about this page' link.
    Thanks
    Bhupendra

    Hi,
    Tou can use Table inside table to show the details this way but I'm not sure about Expand/Collapse.
    Expand/Collapse are part of HGRID.
    I think we can develop this functionality with little manipulation.
    Regards,
    Reetesh Sharma
    Edited by: Reetesh Sharma on Jun 28, 2010 4:56 AM

  • Changing the format of "Table of Contents"

    I am attempting to build a book from a Genealogical Generational listing that indicates the generation number at the beginning of each section. I also add that number along with the section page number at the bottom of each section. i.e. Generation 1  page  n.
    Is there any way to automatically pickup the section title to add into the "Table of Contents"?
    Using my present method, highlight the section title, click "Paragraph Style" (edit to my preference); will show only page 1 for all section beginning pages and seems unprofessional. alternatively, I could just leave out the page number somehow and attempt to "Tab" the first page of each section. Basically, what I would like is:
    "Generation 1
    Generation 2" etc.... or something similar without page numbers and the section name is the page link to the first page of that section.
    Tks
    Sparkgapper
    Message was edited by: Sparkgapper
    I am attempting to repost this on Pages from Numbers and it is telling me I am not authorized "to move this content to that place."
    In doing "normal typing" I hit return at the wrong place and it was posted on numbers BEFORE I could correctly change its location of posting.
    Sparkgapper

    This is incorrectly posted AGAIN. Someone, please remove this discussion.
    I hit return before making the change to PAGES from NUMBERS.
    Sparkgapper

  • Find/Change Item Numbers and create Table of Contents

    Hello! I need help to find all my item numbers and apply a paragraph style to it so I can use them to create a Table of Contents page.
    Sample item numbers
    #12345
    #12345-5
    #12345-20
    #12345-ABC
    #12345/N
    I tried entering #^?^?^?^?^? on the Find/Change box and but this will find exactly the 5 characters after the # sign. I wonder if you can find all characters starting with # and until the last characters.
    Once I find all the item numbers, how can I apply the paragraph style for only those characters after the # sign? Because I only want to show the item numbers without the # sign on the Table of contents/Index page.
    By the way, I have InDesign CS2 which have no GREP function Maybe I can do this without the GREP?
    I really appreciate any help. Thank you very much.

    You actually have two problems here. The first is to assign the paragraph style. For that you can use GREP.
    Find #\d+ and leave the change field blank, but in the change formatting pick the paragraph style. Stricly speaking you only need to find #\d or even just # because a paragraph style applies to an entire paragraph, so assigning it to any character inthe paragraph will assign it to the entire paragraph.
    Which is your second problem. The TOC is based on paragraph styles and will include all of the text in each paragraph (up to the character limit for a TOC entry, which I think is 256 characters). You can't make a TOC and only use some of the paragraph. For that you need to use an index, or you need to make hidden or non-pinting frames with only the exact text you want in the TOC and assign a unique style to those.
    It's also possible someone has written (or could write) a script that can find text strings that match a pattern such as your numers, assign a character style to them (you could actually do that part in the paragraph style by adding a nested GREP style), then making a list of the text strings along with the page number on which they appear -- almost the same as an index except it would be based on character style, not an index marker.

Maybe you are looking for

  • How to use airplay to display ipad slideshow on macmini screen

    iPad 3 Mac Mini, Mountain Lion Airplay I do not have AppleTV. I can play iPad's music through the Macmini, using Airplay. I seem to be able to play a slideshow - the iPad shows it is playing to the macmini, but no picture appears on the screen. Earli

  • [solved]GNU make

    I am trying to install virtualbox but It says I need to install gnu make I did some searches and I got nowhere. I enoven pacman -Ss and got no hits. WHat file do I need to install? Last edited by Romanrp (2009-11-24 16:45:40)

  • After Updates 1/10, iBook crashing

    Hi, all First Apple post Bought my iBook G4 Jan 8 of last year. Now crashing Installed updates, Jan 10 or 11, via CAT5 wire (AirPort disabled, running on battery for updates). Required reboot – booted okay. (Re-enabled AirPort right before shutting d

  • PRT Planning (PP)

    Hello, I am NOT sure whether this is right forum to give this problem. I have tried in SAP-PP and failed to get any replies. So, I am trying over here... Scenario: I am designing a Solution for Bottle Manufacturing company as PP Consultant. Bottle ma

  • Larsen and Toubro Integrated Engineering Services - Looking for NI Platform specialists

    L&T IES is looking at hiring LabVIEW developers with core expertise in either Auto/Aero/Industrial/Medical domains. Strong knowledge of LabVIEW core and other toolkits/add-ons like VeriStand / TestStand / RT / others is required Experience Level: 1 -