Home > HelpConsole 2012 > How To Open a Help System in a Minimal Window
How To Open a Help System in a Minimal Window
When I launch my HelpConsole project from:
it is displayed in a minimal frame with no controls, just a read-only address bar. How do I accomplish this?
Answer: There is an “onclick” event assigned to that icon that uses the “Window.Open()” function to open the help system. Here’s more information:
http://www.w3schools.com/jsref/met_win_open.asp
The HTML code:
<a href="#" onclick="window.open('http://www.helpconsoledocs.com/helpconsole%202012/', '_blank','location=0,status=0,resizable=1,width=960,height=600');return false;" title="Display HelpConsole Help System" target="_blank"><img src="../_engine/images/help.png" onmouseover="this.src='../_engine/images/help_mouseover.png'" onmouseout="this.src='../_engine/images/help.png'" hspace="2" border="0"/></a>