Adobe RoboHelp: Hide WebHelp Navigation Pane on Load
When you open the WebHelp, you sometimes want the TOC to be closed. To make sure the TOC is not visibile when the WebHelp opens, you need to modify your output.
RoboHelp 10
- Open whskin_frmset01.htm.
- On line 66, change
220,*
into0,*
.
RoboHelp 8 and 9
- Open whskin_frmset01.htm.
- On line 53, replace
220
with0
. - Open whthost.js.
- Comment out the lines:
- RoboHelp 8: lines 1395 and 1396
- RoboHelp 9: lines 1371 and 1372
function window_OnLoad() { if(gsBgImage&&gsBgImage.length>0) { document.body.background=gsBgImage; } if(gsBgColor&&gsBgColor.length>0) { document.body.bgColor=gsBgColor; } loadToc(); //var oMsg=new whMessage(WH_MSG_SHOWTOC,this,1,null) //SendMessage(oMsg); }