Skip to main content
Known Participant
April 15, 2008
Question

Hiding Parts of the Browser

  • April 15, 2008
  • 3 replies
  • 343 views
I've generated my Help file in FlashHelp Pro (using RH 6). It looks great, but I'd like to hide a few things from the top of the browser (i.e., URL, refresh, stop, live search, any extra tool bars, etc.). Is there a way to do this? If so, how?

Thanks in advance for any help you can offer.
    This topic is closed to new replies. Start a new post to keep the conversation going.

    3 replies

    April 16, 2008
    For non-context-sensitive help, the settings have to be specified in the page that is calling the help, such as:

    <a href="javascript:;" onClick="window.open("path/to/startpage.htm","menubar=no,toolbar=no,status=no")>Help</a>

    If you're using context sensitivity, you can specify a window in the Project Setup pod (RH7). Several checkboxes in the window dialog let you specify which browser elements you want to be included. Then specify that window in the RH_ShowHelp function.

    Hope this helps,

    Ben
    V JordanAuthor
    Known Participant
    April 16, 2008
    Where do you configure these settings?
    April 16, 2008
    Use a JavaScript window.open to open the window without these features.
    menubar=no,toolbar=no,status=no, etc...