Removing Splash Page after generation

Issue

In lieu of switching this in the UI, user wants force the WebWorks Help output to go to the first page of the documentation via the output files.

Resolution

You can do this from the directory: Output\WebWorks Help 5.0\[group name]\wwhelp\wwhimpl\common\html If the splash page is enabled, it will look like this:

<body onload="WWHOnLoad(false);" bgcolor="#FFFFFF" onkeydown="WWHHandleKeyDown((document.all||document.getElementById||document.layers)?event:null);" onkeypress="WWHHandleKeyPress((document.all||document.getElementById||document.layers)?event:null);" onkeyup="WWHHandleKeyUp((document.all||document.getElementById||document.layers)?event:null);">
<div>
<p align="center">
<img alt="WebWorks Help 5.0" src="images/splash.jpg">
</p>
</div>
</body> 

You will want to change the output so that it looks like this:

<body onload="WWHOnLoad(true);" bgcolor="#FFFFFF" onkeydown="WWHHandleKeyDown((document.all||document.getElementById||document.layers)?event:null);" onkeypress="WWHHandleKeyPress((document.all||document.getElementById||document.layers)?event:null);" onkeyup="WWHHandleKeyUp((document.all||document.getElementById||document.layers)?event:null);"></body>

Permalinks/Solutions/Output/WebWorksHelp/RemovingSplashPageAfterGeneration (last edited 2010-12-20 23:41:00 by LaurenLever)