Actuate Information Console reference : Customizing Information Console online help : Changing help content : Changing the table of contents : How to add a content file link to the table of contents hierarchy
 
How to add a content file link to the table of contents hierarchy
Use the following procedure to add a content file link to the table of contents hierarchy for the Information Console help system.
1 If you are linking to an anchor, navigate to the document root directory. Open the content file that contains the anchor to which the table of contents will link. Determine the value of the name attribute for the anchor. Then, close the content file without saving it.
2 Navigate to the <document root>\wwhdata\common directory.
3 In a text editor, open the files.js file and determine the internal file array number for the content file, either that you opened in step 1 or that you are linking to directly. Close files.js without saving it.
4 Navigate to the <document root>\wwhdata\js directory.
5 In a text editor, open the toc.js file.
6 Add an entry to toc.js for the table of contents entry using the following format:
var D=C.fN("Setting an e-mail address","15#228413");
*var is a keyword that must precede the entry if D has not been defined as a variable in this file prior to this line. Do not use var if D has already been defined.
*D is the table of contents hierarchy level of the new table of contents entry.
*C is the table of contents hierarchy level above the level of the new table of contents entry.
*''Setting an e-mail address'' is the string to display in the table of contents for this entry.
*15 is the array number of the target file established in step 3.
*#228413 is a number sign (#) followed by the value of the name attribute for the anchor established in step 1, if it is applicable. To link to the head of a file, do not append an anchor string to the array number of the target file.
7 Save and close toc.js.