What is the red button... "IHELP" surrounded by blue, green, red and yellow in the lower right hand corner of the browser window all about?

What is the purpose of the red button... "IHELP" in the lower right hand corner of the browser window? Does it have any purpose? If so what? When clicked on there is no response.
== This happened ==
Every time Firefox opened

No such button exists by default. It sounds like some extension installed in your Firefox, view/disable them from Tools -> Add-ons, '''Extensions'''

Similar Messages

  • What is the little Firefox instance peeking in on the lower right-hand corner of the desktop?

    When I try to minimize the Firefox Window it goes into a cycle of minimizing and reopening. This will not stop until I close that little instance mostly off-screen in the lower right-hand corner.
    The toolbar at the bottom of the desktop shows two instances of Firefox. When the main instance is in this cycling mode (about one cycle per second) I can use the toolbar to select the off-screen instance and close it. Then the cycling stops.

    No need to post twice - see my answer at your first (or second?) question...
    Clinton

  • In the lower right hand corner of the screen, how do I stop the download window from poping up each time I download something?

    In the lower right hand corner of my screen, everytime I download, a download window pops up, that scans what I downloaded for a virus then gives me a message that says download is complete. How do I disable that feature?.

    To turn off the alert you can change a hidden preference.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.download.manager.showAlertOnComplete''' and double-click on it to change its value to '''false'''
    # If you want to stop Firefox requesting a virus scan, double click on the preference '''browser.download.manager.scanWhenDone''' to change its value to '''false'''

  • Hello - I used a Sony DVD to burn 350 songs. When I put the DVD into another computer to rip those 350 songs, the 'import songs' button never appeared in the lower right hand corner of iTunes. What's preventing songs from being ripped?

    Hello - I used a Sony DVD to burn 350 songs from my iTunes library to share with a friend. When I put the DVD into my friend's computer to rip those 350 songs, the 'import songs' button never appeared in the lower right hand corner of iTunes. Anybody know what's preventing me from ripping what's on the DVD? 

    When I put the DVD into my friend's computer to rip those 350 songs, the 'import songs' button never appeared in the lower right hand corner of iTunes.
    The import command only works with audio CDs. So if you burned the files in mp3 format, try instead using the "File > Add file to library" or "File > Add folder to library" commands.

  • In the upper-right hand corner of the screen, the "Restore Down" button doesn't restore down. How do I fix this?

    In the upper right-hand corner of the screen (where the red X is), the middle button "Maximize" doesn't reduce the screen size when I click on it. How do I get this to work normally?

    System Preferences > Notifications > Mail

  • When I open an email, my computer won't go to the link listed, or when I am doing research the same thing, then I see a ALLOW in the upper right hand corner of the screen and I have to click on that. What happened and how do I fix this?

    Somehow my settings have changed. When I open an email and there is a link, my computer won't allow it, also when I am doing a search, my computer won't allow certain links to open.
    What I see is "ALLOW" in the upper right hand corner of the screen, and I have to click on that in order to continue my email or do a search. How did this suddenly happen and how do I change it back to being able to roam the Internet without having to click on ALLOW all the time?
    Also, I set up Google as my home page, but it won't list Email or any other options. I have to type in Google in the Google box, then Email appears. How do I get the right Google set up as my home page so I can access Email without jumping through hoops.
    Thanking you so much for your time and consideration.
    Sincerely,
    [email protected]

    Sign out of the iTunes Store. Sign in again.
    tt2

  • How can i place button on top right hand corner of the tabbed pane

    Hi all,
    i want to place button on top right hand corner of the tabbed pane, just run the code below, i have add button(it going to insert tab into tabbedpane), i want to place that tab into top right hand corner of the tabbedpane (not inside the tab itself). if i set tab policy setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT), it will give two button at right hand corner along with those buttons i want to and one more add button.
    please suggest so that i can move forward.
    Thanks in advance
    import java.awt.Dimension;
    import java.util.HashMap;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    * @author  Dayananda.BV
    public class TabpaneDemo extends javax.swing.JFrame {
        /** Creates new form TabpaneDemo */
        HashMap<Integer, tabpanel> panelMap = new HashMap<Integer, tabpanel>();
        public TabpaneDemo() {
            initComponents();
            createFloorPlan();
            getContentPane().setPreferredSize(new Dimension(400,400));
            jTabbedPane1.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jTabbedPane1 = new javax.swing.JTabbedPane();
            add_tab_button = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            add_tab_button.setText("+");
            add_tab_button.setMargin(new java.awt.Insets(0, 0, 0, 0));
            add_tab_button.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    add_tab_buttonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(jTabbedPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(308, Short.MAX_VALUE)
                    .addComponent(add_tab_button, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(67, 67, 67))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addComponent(add_tab_button)
                    .addGap(8, 8, 8)
                    .addComponent(jTabbedPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 292, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
        private void createFloorPlan(){
            tabpanel floorplan_Panel = new tabpanel(panelMap.size()+1);
            panelMap.put(floorplan_Panel.getTabIndex(), floorplan_Panel);
            jTabbedPane1.add(floorplan_Panel, floorplan_Panel.getTabName());
            jTabbedPane1.setSelectedIndex(jTabbedPane1.getTabCount()-1);
        private void add_tab_buttonActionPerformed(java.awt.event.ActionEvent evt) {                                              
            createFloorPlan();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new TabpaneDemo().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton add_tab_button;
        private javax.swing.JTabbedPane jTabbedPane1;
        // End of variables declaration                  
        class tabpanel extends JPanel{
            private int tabIndex = 0;
            private String tabName ;
            public tabpanel(int tabIndex) {
                this.tabIndex = tabIndex;
                if(tabIndex >= 10) {
                    tabName = "Floor Map"+tabIndex;
                } else{
                    tabName = "Floor Map"+tabIndex+"  ";
            public int getTabIndex(){
                return tabIndex;
            public String getTabName(){
                return tabName;
    }Thanks
    Dayananda B V

    This part of tabbed pane is not customizable as it lies in the ComponentUI(TabbedpaneUI) portion of the tabbedpane.
    But I can point out the place u can change to bring the desired feature into effect.
    U can find an Inner class called ScrollableTabSupport
    Look for the methods createButtons where u can create extra buttons and add to the tabbed pane.
    The Inner class also implements actionListener where u can implement the action for the button u added.
    By this method U have to use your own extended TabbedPaneUI which u cant escape from.
    Hope this will help u.

  • How to you get the transfer button in the lower right hand corner?

    I am trying to transfer my purchases from one computer to another through home sharing. The songs come up, but there is no transfer button in the lower right hand corner, so i cannot transfer the purchases. How do you get the button there?

    On the top-bar of iTunes, Under "advanced" click "switch to mini-player". That will automatically switch it to that size.
    You can change it back to normal size mode by clicking the "maximize" symbol.
    Of course, you can adjust the location of it on the screen at anytime by dragging its border (like any other program).
    Good luck!
      Windows XP  

  • How do I move Start from the upper right-hand corner of the screen to bottom left of screen?

    For some reason, I accidentally hit a button which moved my Microsoft Start button to the upper right hand corner of the screen. I would prefer the Start button to be in the lower left-hand corner of the screen. Please advise.
    Thank you.

    Sorry, that isn't a Firefox support issue. The Start button is a part of the WinXP operating system. <br />
    https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/win_tray_move_taskbar.mspx?mfr=true

  • How can I print in the right hand corner of the paper (no borders)?

    How can I print in the right hand corner of the paper (no borders). I have Adobe 7.

    Is that elements 7 or photoshop 7? It can make a difference.
    What you can do is create a new document that is the size of the paper, then place your document in the new document. You can now align your document to the right side of the page.
    Now print.
    Borders can have two meanings here. You can add a border to an image such as a stroke for example. The other meaning is the printer has a non-printing area called a border.
    In the former there is nothing to do as long as you did not add one. In the latter some printers do have a print to edge option, but it has to be a feature of that printer. It would be located in the print options. If the printer does not have such a feature, there is nothing you can do, short of manually cutting the paper with a paper cutter, scissors, or x-acto knife.

  • Mouse pointer stuck at the right-hand corner of the screen.

    Hello all,
    I am writing to find help for my girlfriend in Nepal. She says the mouse pointer is stuck in the right-hand corner of the screen, and won't move. I suspect it's a software glitch but since I'm in the US, I can't look at it. This is an old G3 iBook in which we replaced the battery just before she left, and she reports that the battery may be connected to her problem. Anybody have any ideas for fixing this?
    Any help really appreciated!
    Thanks!
    mike simpson
    < Edited by Host, for your protection, no personal information please. >

    Hi, and welcome to Apple Discussions.
    If the iBook is running OS X 10.2 or above, have her try booting into Safe Mode. This will take quite awhile longer than a normal startup because it does a file check and repair of the hard disk.
    If this works she will see the normal desktop. Once completely started up in Safe Mode, have her try to restart normally, and go to Applications > Utilities > Disk Utility.
    Select the named boot volume in the left sidebar, ("Macintosh HD" unless it's been renamed). What is the hard drive capacity and how much space remains available on it? Repair permissions on it.
    See if a little hard drive maintenance helps things out.

  • We are creating a photo book and on the cover in the lower right hand corner there is part of the title. We did not create it and cannot find how to delete it. Any ideas.

    We are creating a photo book and on the cover in the lower right hand corner there is part of the title. The cover title is centred below the cover picture. We did not create it and cannot find how to delete it.  Any ideas?

    Preview according to this article and see what it does. http://support.apple.com/kb/PH2486
    The printed book will match the preview
    LN

  • I updated to Itunes 11.1 on Windows 8 & now there isn't a device tab in the top right hand corner or the sidebar. When I ran diagnostics it didn't pick up my Ipad or Iphone. Has anyone else had this problam & does anyone know how to fix it?

    I updated to itunes 11.1 in Windows 8 & now there isn't a device tab in the top right hand corner or the sidebar. When I ran diagnostics it didn't pick up my Ipad or Iphone. Has anyone else had this problem & does anyone know how to fix it?
    I have restarted my computer, turned my devices off & then on again & reinstalled itunes & none of this has helped.

    I have the same problem.  Emailed apple--no help

  • HT201335 I have a UK apple mac and im trying to use mirroring so when searching google, ebay, writting document it shows up on my tv but i dont have the option when i click on the rectangular box in lower right hand corner. ANy one have advice?

    I have a UK apple mac and im trying to use mirroring so when searching google, ebay, writting document it shows up on my tv but i dont have the option of 'Mirroring' when i click on the rectangular box in lower right hand corner. Anyone have advice on how I can do this?

    Welcome to the Apple Community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). It also requires the computer to be using wi-fi.
    Do you meet these requirements.

  • Icons in the addon bar have moved from the right hand corner to the left

    Hi everybody,
    I've recently updated to the most current Firefox 4b10. I'm currently using the addon bar on the bottom that holds several addon-related icons (like firebug etc.). Those do still work, but for some reason they have moved from the right-hand corner of the addon-bar (where they have always been) to the left side for no apparent reason.
    I know it's kind of a little issue, but it is really disturbing since I keep looking in the wrong corner after having the icons there for so many years. Is there any way I can revert that?
    Thanks!
    mrmister

    Please report this problem to Firebug team,
    http://code.google.com/p/fbug/issues/list

Maybe you are looking for