Automate your RoboHelp tasks to save hours. See my out of the box solutions.
Do you need a custom solution or do you want more information? Contact me to find out how much time you can save!

When a user opens a topic in WebHelp directly, the navigation pane is not visible. In the properties of the SSL, you can choose to show a link when a topic is opened directly. With a simple script, you can force WebHelp to always show the navigation pane.
For RoboHelp 9 and below, you can add a script to the footer of your master page (template in RoboHelp 7) :
var panevisible = new whMessage(WH_MSG_ISPANEVISIBLE,this,1,"");
if(!SendMessage(panevisible)) {
show();
}Note: Make sure the master page is assigned to all the topics. If you use multiple master pages, add the script to all your master pages.
For RoboHelp 10, you can add a script to the footer or the header of your master page:
if(isTopicOnly()) {
setTimeout('show()', 100);
}Note:
Copyright Willam van Weelden. All rights reserved. - Terms and conditions - Privacy policy - Taxes apply to all prices. Back to Top
Add new comment