Browser navigation bar

Hi there
I wondered if anyone knew whether it is possible to hide the
browser navigation bar from display when viewing Online Help
generated from RoboHelp? I have a client who is interested in doing
this.
Many thanks in advance.
Cheers
Alice

Hi Alice
Perhaps the following link will help.
http://www.robowizard.com/RoboWizard/NewProject.htm#MonthlyScry/032004.htm
Hope so... Rick

Similar Messages

  • Business Component Browser Navigation Bar

    Is it necessary to extend the JUNavigationBar within 10.1.2 in order to get one that displays the page-scroll (that is visible within the Business Component Browser)?
    I understand that one would have to add a second iterator (for the page rowset a'la the Web-components used within the ADF chapters within the Programmers manual for 10.1.2), but one would expect that the BCB Navigation bar would be available to developers - somewhere....
    Oh well, enough already. I'm going for away for a weekend down the pub... lucky me!

    Sorry, I was killing time....
    In the JDeveloper 10g handbook - one of the teen-chapters I think - there is at least one example using ADF (maybe with UIX) where yoiu can drag-n-drop a rowset-iterator onto a form, but then add in a second iterator to move by a set number of rows. So if your first iterator navigates ten rows, your second iterator would return the next ten rows.
    As for the solution, I chose to do this...,
    [The project is open-source, or - more accurately - will be when released.]
    package MAGEMLexport;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    import oracle.jbo.uicli.controls.*;
    * Specialized version of the JUNavigationBar for the MiMiR application.
    * @author Paul Jan Mehmet
    * @version 1.2.0.0 [Initial Release]
    public class MiMiRJUNavigationBar extends JUNavigationBar
    implements ActionListener
    private static ImageIcon pageIcons[] = new ImageIcon[2];
    private static String imageDir = "images/";
    private static String pageImages[] = {"prevpage.gif", "nextpage.gif"};
    static final int PAGE_FORWARD = 99;
    static final int PAGE_BACKWARDS = -99;
    // Load images only once...
    static
    Class me = MiMiRJUNavigationBar.class;
    for(int i = 0; i < pageImages.length; i++)
    URL icon = me.getResource(imageDir + pageImages);
    if(icon != null)
    pageIcons[i] = new ImageIcon(icon);
    private ArrayList listeners = new ArrayList();
    private int target;
    private MiMiRJButton pageButtons[] = new MiMiRJButton[2];
    private String pageTooltips[] = {"Page back", "Page forward"};
    private int scrollRange = 10;
    * Creates a new MiMiRJUNavigationBar object.
    public MiMiRJUNavigationBar()
    super();
    addPageButtons();
    try
    jbInit();
    catch(Exception e)
    e.printStackTrace();
    private void jbInit()
    throws Exception
    this.setSize(new Dimension(400, 30));
    * Adds to the MiMiRJUNavigationListeners Collection.
    * @param mjunl The Object implementing the MiMiRJUNavigationListener Interface.
    public synchronized void addMiMiRJUNavigationListener(
    MiMiRJUNavigationListener mjunl
    listeners.add(mjunl);
    * Removes from the MiMiRJUNavigationListeners Collection.
    * @param mjunl The Object implementing the MiMiRJUNavigationListener Interface.
    public synchronized void removeMiMiRJUNavigationListener(
    MiMiRJUNavigationListener mjunl
    listeners.add(mjunl);
    * The action to act when an ActionEvent is triggered.
    * @param e The ActionEvent triggered.
    public void actionPerformed(ActionEvent e)
    super.actionPerformed(e);
    Object source = e.getSource();
    if(source instanceof MiMiRJButton)
    int key = ((MiMiRJButton)source).getKey();
    switch(key)
    case PAGE_FORWARD :
    scrollPage(true);
    break;
    case PAGE_BACKWARDS :
    scrollPage(false);
    break;
    default :}
    _updateButtonStates();
    else // Normal JButton in JUNavigator
    for(int i = 0; i < JUNavigationBar.BUTTON_EXECUTE; i++)
    if(source == super.getButton(i))
    target = i;
    break;
    fireMiMiRJUNavigationEvent();
    private synchronized void fireMiMiRJUNavigationEvent()
    MiMiRJUNavigationEvent mjune = new MiMiRJUNavigationEvent(this, target);
    Iterator i = listeners.iterator();
    while(i.hasNext())
    ((MiMiRJUNavigationListener)i.next()).navigationEvent(mjune);
    protected void addPageButtons()
    String buttons[] = {"pageBack", "pageForward"};
    for(int i = 0; i < buttons.length; i++)
    int unary = (i == 1)
    ? PAGE_FORWARD : PAGE_BACKWARDS;
    if(MiMiRJUNavigationBar.pageIcons[i] != null)
    pageButtons[i] =
    new MiMiRJButton(MiMiRJUNavigationBar.pageIcons[i], unary);
    else
    pageButtons[i] =
    new MiMiRJButton(MiMiRJUNavigationBar.pageImages[i], unary);
    pageButtons[i].setBorderPainted(false);
    pageButtons[i].setFocusPainted(false);
    pageButtons[i].setMargin(new Insets(0, 0, 0, 0));
    pageButtons[i].setBorder(
    BorderFactory.createLineBorder(java.awt.Color.lightGray, 0)
    pageButtons[i].setEnabled(false);
    pageButtons[i].setToolTipText(pageTooltips[i]);
    this.add(pageButtons[i]);
    pageButtons[i].addActionListener(this);
    _updateButtonStates();
    protected void _updateButtonStates()
    super._updateButtonStates();
    pageButtons[0].setEnabled(
    getButton(BUTTON_PREV).isEnabled() &&
    (getModel().getCurrentRowIndexInRange() >= scrollRange)
    pageButtons[1].setEnabled(
    getButton(BUTTON_NEXT).isEnabled() &&
    ((getModel().getCurrentRowIndexInRange() + scrollRange) < getModel()
    .getAllRowsInRange().length)
    * Sets the size - in rows - that the MiMiRJUNavigationBar will scroll
    * when the page buttons are pressed.
    * @param scrollRange The int number of rows to scroll.
    public void setScrollRange(final int scrollRange)
    this.scrollRange = scrollRange;
    * Returns the size - in rows - that the MiMiRJUNavigationBar will scroll
    * when the page buttons are pressed.
    * @return int The number of rows to scroll.
    public int getScrollRange()
    return scrollRange;
    protected void scrollPage(boolean forward)
    int direction = forward
    ? 1 : (-1);
    getModel().setCurrentRowIndexInRange(
    getModel().getCurrentRowIndexInRange() + (direction * scrollRange)

  • How to open a new browser window from a link on the navigation bar

    Hi,
    I entered a URL in the 'URL Target' field for the Navigation Bar Entry. As expected when the I clicked on the link in the Navigation Bar my browser refreshed with the target URL.
    I want to be able to actually open a new window rather than refresh my current window. The help text says, and I quote ...
    "In the link generated for this icon include the following onClick javascript. Use of the onclick javascript could popup a help page in a new window (see example 1).
    Example 1:
    window.open('US/asfhhome.htm','Help','scrollbars=yes,resizable=yes,width=625,height=350,left=25,top=150');return false
    Set the Icon Target attribute to # if you are using OnClick JavaScript. Set the Image Alt Text attribute to the text the user will see to click on."
    So I created similar Javascript as to the example and placed in the 'OnClick Javascript' field, and placed a '#' in the 'URL Target' field.
    When I run it doesn't work, the '#' is picked up and the Javascript is ignored. Can somebody please tell me what I'm doing wrong.
    Thanks

    I had the same problem. I finally ended up just using the standard popupURL javascript. In the URL Target I have:
    javascript:popupURL('<link>')
    This opens a new window but since it is for popups the menus are missing. You may want to write your own javascript function to open the new window with your own settings.
    Search the forums for popupURL for more ideas.
    javascript:popupURL()
    --Jeff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Not able to find userChrome.css file for customizing the Firefox browser. I just installed 20.0.1 firefox browser. Want to disable/remove navigation bar.Pls Hlp

    Not able to find userChrome.css file for customizing the Firefox browser. I just installed 20.0.1 Firefox browser version.
    I want to disable/remove navigation bar from the browser window, making the browser to work like kiosk mode.
    Please Help,
    Thanks,
    Vishal.

    hello,
    here is the complete path ..
    ''C:\Documents and Settings\XXXXXXX\Application Data\Mozilla\Firefox\Profiles\chrome"
    Let me know
    Thanks,
    Vishal.

  • Fixing resp. pinning the navigation bar to the top of the browser

    Please help... I would like to fix the navigation bar on the top of the browser, so when you scroll down the page this navigation bar is staying always on the top of the browser. In this thread http://forums.adobe.com/message/4782547#4782547 heathrowe offered this solution:
    Check  the code for the Stage > compositionReady, as follows, that makes an element 'move' when page scrolls
    $(window).scroll(function(){
           var element = sym.$("sidebar");
                  element
      .stop()
      .animate({"marginTop": ($(window).scrollTop() + 30) + "px"}, "slow" );
    Download sample here
    http://www.heathrowe.com/edge/scrolltop3/ScrollTop2.zip
    It is nice, but the navigation bar is moving, and I would like to have it ALWAYS on the top.
    Anyone knows how to solve this problem?
    Thanks in advance...
    Stanko...

    hi there,
    I found the solution for scrolling behaviour, but now I have (very simple) problem that I don't know how to access the main timeline from within the symbol.
    In order to connect scrolling behaviour to some spots on the one pager you have to define simple shape, name it (in this case "three") and put the click behaviour, here the code for that:
    var element = sym.$("Three");
    // No Animation
    //$(window).scrollTop(element.offset().top);
    // With Animation
    $('html,body').animate({scrollTop: element.offset().top}, "slow");
    Now my buttons are in the naviBar, say in a symbol, and I don't know how to access the shape on the main timeline from within the naviBar Symbol.
    Please help...
    here the zipped file:
    https://www.dropbox.com/s/0yy9uvnixmxww43/heelbopps_2.zip
    You will see, if you click the shape with scroll down on it, it works, but if you click the star in the naviBar, it doesn't.
    Regards...
    Stanko

  • I am making a website for my high school and it's online, but for some reason my navigation bar doesn't show up on firefox browser. Any suggestions?

    I made a new website for my high school. I used the same code for the navigation bar in the old site for the new site and for some reason my new site's nav bar won't show up in firefox browser or for that matter any browser other than Internet. Any ideas of why?

    Looks fine here. You may need to bypass the cache if you uploaded new code.
    Reload a web page and bypass the cache with:
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    See:
    * [[Keyboard shortcuts]]
    * [[Mouse shortcuts]]

  • Can someone tell me how to permanently remove the navigation bar so that a user cannot put it back himself. i do not want users to be able to browse to the local c:\ through this navigtion bar. using firefox 7. thanks

    i have locked down a client using policy editor for Windows 7.
    and i want to restrict a user to one website only via a firefox shortcut on the desktop and to restrict their access to the local system drive which is currently vulnerable using the navigation bar. i know how to right click and rmeove but the user can put this back himself quiet easily and then browse anywhere on the local machine or web.

    Even then it won't work.<br />
    If the location bar is hidden then you can use Ctrl+L to bring up a pop-up with a location bar.
    You would probably need to run Firefox in a sandbox that doesn't allow access to the local file system to get that working properly.

  • Navigation bar pinned to the top of the browser window

    I have a navigation bar and graphic pinned to the top of the window, but when scrolling the page content goes over the nav bar. How can I keep it on top of all the other content?

    Hello,
    It is quite simple.
    The menu is on the master page and this page is always in the background so beneath everything.
    Go to your masterpage, click on the menu en use the shortcut crtl x to cut.
    Now the menu is on the clipboard.
    To paste it use the shortcut crtl/alt/shift/v in every page of your site. (this is called pasteing in place).
    Now press in every page (with the menu selected) on the shortcut crtl/shift / ] to get the menu infront of everything.
    Greetings Alex

  • I have no navigation bar I cannot copy paste browse back and forth where is it

    where is my navigation bar
    == This happened ==
    Every time Firefox opened
    == I downloaded it

    I've hidden my toolbars, and now I can't find how to reactivate it.
    Many thanks
    Luc

  • Header and Navigation bar not showing in IE browser

    Hello there!
    My headers and navigation bar are not showing up when I view in IE, although they do show up when I view the live design in Dreamweaver. They also display properly in Chrome. Any thoughts?
    http://moxiespeak.com/indextest
    Thank you!!

    Not quite.  Replace all this:
    <!--[if lt IE 7]>
          <script type="text/javascript" src="http://info.template-help.com/files/ie6_warning/ie6_script_other.js"></script>
       <![endif]-->
    <!--[if IE]>
          <script type="text/javascript" src="js/html5.js"></script>
       <![endif]-->
    <!--[if lt IE 9]>
    <script type="text/javascript" src="js/html5.js"></script>
    <![endif]-->
    <!--[if lt IE 9]>
    <script type="text/javascript" src="js/html5.js"></script>
    <![endif]-->
    With just this:
    <!--[if lt IE 7]>
          <script type="text/javascript" src="http://info.template-help.com/files/ie6_warning/ie6_script_other.js"></script>
       <![endif]-->
    <!--[if lt IE 9]>
    <script type="text/javascript" src="js/html5.js"></script>
    <![endif]-->
    Make sense?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Navigation bar not showing in IE browser?!!

    The navigation bar is not showing in Internet Explorer at all! It is just fine, of course, in Safari.
    Firefox shows the nav bar but in two lines, and another info box appears for a second then vanishes.
    www.thestudio33.com

    IE won't show your navigation if the user has Java turned off.
    You need to hide the standard iWeb navigation and create your own....
    http://iwebfaq.org/site/iWebNavigationmenu.html
    You are using the "Darkroom" template and your navigation box is offset to the left - probably because you extended the page width beyond the default.
    This template has its problems and slows the download speed of your website.

  • FF 5.0. Windows 7 The main navigation bar has suddenly started to bring up my igoogle page each time I enter a query. Is there a way to prevent this from happening?m happening.

    I suddenly started getting a black igoogle bar when attempting to use the navigation bar at the left side of the browser.
    I have added no add on to which I can attribute this.
    I started to eliminate the Igoole program at the site but became concerned when it appeared that I might also remove my gmail account, which I had earlier -and separately from Igoogle- created.
    I would like to prevent the google page from coming up when I use the left side of the navigation bar.
    Thanks
    Sam

    This is something you need to report via the Feedback button (or use the link on the Help menu).
    Firefox 5.0 is still in BETA and not slated for release until June 21.
    Reinstall the full version of the current release which is v4.0.1, download link at the top of this forum.

  • After downloading firefox to a new computer and using sync I no longer have any navigation bar or menu button.

    This is on a windows computer at work. It actually happened on 2 new computers. Before the sync, both the navigation bar and menu button were there. After the sync - Gone! I have tried uninstalling firefox and then reinstalling, but when I reinstall, the problem is already there, and the bookmarks from the sync reappear automatically on the reinstalled version. Is there any way to uninstall the sync?

    Currently UI customizations do not sync. However you can add this about:config.
    services.sync.prefs.sync.browser.uiCustomization.state = true

  • Change navigation bar Adobe Reader plugin on Mavericks 10.9.5

    I have installed the latest version of Acrobat Reader on my Mavericks 10.9.5.
    I'm using safari browser with adobe reader plug in to read PDF document in web viewer.
    A few months ago I have noticed that the navigation bar / toolbar is different from what is used to be on Adobe Reader in safari.
    In the original navigation bar there was more options.
    How can I change it back to the default navigation bar to look like this?

    You need to go into the Safari>Preferences>Security>Manage Web Site settings,
    Select Adobe Reader
    Set Allow  Always for all web sites.

  • When I open another Tab and type in a website address, after the site loads the URL in the navigation bar disappears. Why?

    When I open a new tab and type in the website url, after the website loads the website url disappears. In order for me to get it to come back, I have to right click on the navigation bar and click undo. why is this?

    Did this happen immediately after the reset or at a later time?
    Does this only happen on a new tab?
    What is the current setting for the new tab page as set via the browser.newtab.url pref?
    You can open the <b>about:config</b> page via the location bar.
    *http://kb.mozillazine.org/about:config
    Rename or delete the prefs.js file and possible numbered prefs-##.js and user.js files to reset all prefs to the default value.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

Maybe you are looking for

  • Can my mini provide ethernet for blu ray player?

    i know you can share internet when connected to internet with ethernet, but i want to share my wireless network my mini connects to with my blu ray player. has anyone done this and had it work? is there a trick? thanks for any info....

  • Setting up a WD Passport external HD

    This may be intuitive for many of you but not for me.  I just bought a 2TB Western Digital external hard drive.  I've plugged it into the computer and and transferred the utility and security files.  I've opened the WD Drive Utilities icon and run th

  • Various process crashes prevent login to main user account

    Here's a good one. I can't log in to my main user account; here's the recap: Computer was acting slow and pausing a lot over past couple of weeks; I put it down to internet slowness at first, but after awhile I began closing down less-critical proces

  • Toplink, bpel and db2

    We are using JDev 10.1.2.1.0 and BPEL Designer. We have a database connection via jdbc jt400 to a DB/2 database on AS/400. Using the sql worksheet we can query a db/2 table and get the correct values returned for character strings. However, if we cre

  • Regarding Applicant no

    Hi, I need to maintain the same applicant no when the an employee applies for the second and the subsequent time. Can you please let me know how can that be achieved? With Regards, Kaustuv Goswami.