Right-click behaviour modified on back arrow

On Safari 2.x, when right-clicking on the "back" arrow, the previously visited pages do not appear.
This was implemented in Safari 1.x, and is a standard feature in other browsers.
Did I miss something in my set-up or is it really gone?
Tx
Michel

Hi MichelJ,
It's been a while since I used Safari 1.x so I can't recall how it used to behave, but in Safari 2.x you can simply hold down the left mouse button over the back/forward buttons to view the history.

Similar Messages

  • Change default right click behaviour

    Hi There,
    After doing some digging, I found that a quicker way of starting a slideshow of photos in a folder is to select the picures, hold down ALT and right click (or ALT, CMD, Click). This changes the "quick view" option to "slideshow" (both on the context menu AND the menu bar at the top of Finder.
    I would prefer to have this as the default. Is there some way of changing this behaviour so I don't need to press ALT? I use slideshow more than I use quick view...
    Thanks,
    James

    This is not the only way, but you can try something like a 3rd party mouse driver such as
    USBOverdrive
    or
    Steermouse

  • FF 3.6.15 & AOL Homescreen:No recognition of Left Mouse clicking fwd/back arrows of AOL Home screen articles. IE8 does not have this problem.

    Using Fifefox 3.6.15 (no prob w/IE8) - at AOL Homescreen & trying to use Left-Click button on mouse to select Fwd/Back arrows on news articles - AOL screen does not recognize mouse clicks on the fwd/back arrows.

    Using Fifefox 3.6.15 (no prob w/IE8) - at AOL Homescreen & trying to use Left-Click button on mouse to select Fwd/Back arrows on news articles - AOL screen does not recognize mouse clicks on the fwd/back arrows.

  • Right-click to select "Back" works but is accompanied by error sound

    Anyone know if Is this a known issue: In Safari (v4 Public Beta, Build 5528.17), every time I right-click and then select Back, the previous page is returned, but I get an error sound as the menu is drawn. This appears to be new with the new Beta and began occurring after installation of the initial download (an earlier build). It also happens using the trackpad.
    I'm using a third-party Logitech mouse with OS X drivers, and the buttons are set correctly. I cannot account for the behavior. It's very annoying. An older, now archived post indicated that the behavior was also noticed using Apple mice.
    Any clues?

    Hi,
    There's a chance it could be a faulty contextual menu item that is erroring and causing the sound. Have a look in these 2 folders to see if anything is present, and if so ove them to your Desktop temporarily to disable them. You'll need to quit and restart Safari for it to notice the change:
    Hard drive > Users > Your Username > Library > Contextual Menu Items
    Hard drive > Library > Contextual Menu Items

  • Right Click in ALV output ?

    Hi,
    I have got an ALV output.
    The reqmnt now is that, if the user Right Clicks on a particular field which is displayed, it should show two transactions, and then it should go to the transaction which is selected by the user.
    How to do this in ALV. Any sample code would be very helpful.
    Regards.

    Check this sample program..may be it will help u.
    REPORT z_alv_context_menu NO STANDARD PAGE HEADING.
    * Type pool declaration
    TYPE-POOLS: slis.
    * Internal table declaration
    DATA: BEGIN OF gt_outtab OCCURS 0.
            INCLUDE STRUCTURE sflight.
    DATA: END OF gt_outtab.
    data: gt_events       TYPE slis_t_event.
    * Structure / Variable declaration
    DATA: g_repid         LIKE sy-repid,
          event           TYPE slis_alv_event.
    * Event: START-OF-SELECTION
    START-OF-SELECTION.
    * Storing the program name
      g_repid = sy-repid.
    * Building ALV event table
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = gt_events
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc = 0.
        REFRESH gt_events.
    *   Adding records for CONTEXT_MENU event
        event-name = 'CONTEXT_MENU'.
        event-form = 'CONTEXT_MENU'.
        APPEND event TO gt_events.
      ENDIF.
    * Data Selection
      SELECT * FROM sflight INTO CORRESPONDING FIELDS
                       OF TABLE gt_outtab
                       UP TO 00030 ROWS.
    * Display ALV grid
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_html_top_of_page = 'HTML_TOP_OF_PAGE'
          i_callback_program          = g_repid
          i_callback_user_command     = 'USER_COMMAND'
          i_structure_name            = 'SFLIGHT'
          it_events                   = gt_events
        TABLES
          t_outtab                    = gt_outtab
        EXCEPTIONS
          program_error               = 1
          OTHERS                      = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * FORM html_top_of_page
    FORM html_top_of_page USING top TYPE REF TO cl_dd_document.
      CALL METHOD top->add_text
        EXPORTING
          text      = 'Hello world '
          sap_style = 'heading'.
      CALL METHOD top->add_gap
        EXPORTING
          width = 200.
      CALL METHOD top->add_picture
        EXPORTING
          picture_id = 'ENJOYSAP_LOGO'.
    ENDFORM.                    "html_top_of_page
    * Form  context_menu
    FORM context_menu USING e_object TYPE REF TO cl_ctmenu.
      DATA: l_smenu TYPE REF TO cl_ctmenu.
      IF e_object IS BOUND.
    *   Create custom Sub-menu to hide column on which right
    *   mouse button will be clicked
        CREATE OBJECT l_smenu.
        CALL METHOD l_smenu->add_function
          EXPORTING
            fcode = 'ZFN1'
            text  = 'Hide Column'(001).
        CALL METHOD e_object->add_submenu
          EXPORTING
            menu = l_smenu
            text = 'Hide'(002).
      ENDIF.
    ENDFORM.                    "CONTEXT_MENU
    * Form  user_command
    FORM user_command  USING r_ucomm TYPE sy-ucomm
                             ls_selfield TYPE slis_selfield.
      DATA: g_grid TYPE REF TO cl_gui_alv_grid,
            t_catalog TYPE lvc_t_fcat,
            w_catalog TYPE lvc_s_fcat,
            l_repid  TYPE sy-repid.
      CASE r_ucomm.
    *   When 'hide column' sub-menu is clicked from the context menu
    *   then hide the column from where this is happened
        WHEN 'ZFN1'.
    *     Get the global instance of the ALV grid as well as
    *     it's field catalog info.
          CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
            IMPORTING
              e_callback_program = l_repid
              e_grid             = g_grid
              et_fieldcat_lvc    = t_catalog.
          CHECK l_repid = g_repid.
          IF g_grid IS BOUND AND t_catalog[] IS NOT INITIAL.
    *       Set the 'NO_OUT' attribute of the catalog to 'X'
            w_catalog-no_out = 'X'.
    *       Modify the field with this above value
    *       on which right click occured
            MODIFY t_catalog FROM w_catalog TRANSPORTING no_out
                WHERE fieldname = ls_selfield-fieldname.
            IF sy-subrc = 0.
    *         Set the field catalog with this modified one
              CALL METHOD g_grid->set_frontend_fieldcatalog
                EXPORTING
                  it_fieldcatalog = t_catalog.
            ENDIF.
          ENDIF.
        WHEN OTHERS.
    * Do nothing
      ENDCASE.
      ls_selfield-refresh = 'X'.
    ENDFORM.                    "USER_COMMAND

  • Why does right-click & "Open Link in New Tab" make the original tab name to change to "New Tab" when I back-arrow in the original tab to reach the original page

    I use Google as my home page.
    When I do a search in Google I have a practice of opening the search links in a new tab by right-clicking on the link and selecting "Open Link in New Tab". That way I can examine multiple links from the search page, which is now open in the first tab.
    The problem that occurs is that when I use the back-arrow in the Navagation bar to return the first tab to its original page, I find the tab name of the original page to be "New Tab" rather than "Google" and I have to click on the "Reload current page" in the Navigation bar to return the tab name to "Google".
    I'm using Firefox-25 on a Linux-Mint 64-bit platform with KDE-4.9.5.

    The problem is just with the name of the tab, not with the contents of the page -- the page looks normal??
    I ask about the page because Firefox 23 seems to have introduced a problem with Firefox's "fast back-forward cache" on the Google search results page. It is related to the "instant prediction results" feature interacting with Firefox is some different way. (More in this thread: [https://support.mozilla.org/en-US/questions/970863?page=2#answer-485663])
    Might be related. Not sure.

  • Back arrow will not drop down the recent history of pages visited on a right-click.

    I use IE 11. Older versions of IE allowed you to back up to any previous page visited during the current session by right-clicking the back button. The right-click would drop down a list of pages visited, and you could choose any one of them, regardless
    of their order. With IE 11, the right-click has no effect. I must left-click the back button and go through each page previously visited serially before reaching the desired one. Have I inadvertently changed a setting or something?

    Hi,
    Right-click on the back/forward button works from my side(IE 11 on Windows 8.1 and IE 11 on Windows 7 Ulimate SP1). Not sure what is your situation.
    And there seems to be a bug related with IE 11 back button, see here:
    IE 11 back button does not work
    If you do not sure which settings have been modified, then we may consider to reset IE 11, and please take a note:
    Resetting Internet Explorer isn't reversible, and all previous settings are lost after reset.
    Here is a reference:
    Change or reset Internet Explorer settings
    Hope this may help
    Best regards
    Michael Shao
    TechNet Community Support

  • If I click on a google search link and return with the back arrow on the browser it takes me to the top of the page and not the link I just opened unlike Internet explorer

    I run a search on google.com and click on a link that comes up near the bottom of the page, After I read it and then use the back arrow (pointing left) to return to the searches it takes me to the top of the page to the first link google found rather than the link I just looked at. This does not happen with other web pages using firefox or Internet Explorer's Browser (using google).

    Type '''about:config''' in the Location (address) bar and press the "Enter" key. When you see a warning, click '''I'll be careful, I promise!''' button.
    * Preferences that have been modified are shown as '''bold (user set)'''.
    * Preferences can be '''Reset to the default''' or changed via the right-click context menu.
    -> In the '''Filter bar''', type '''browser.sessionhistory.max_entries'''
    * Right click the preference '''browser.sessionhistory.max_entries''' and click '''Modify'''
    * Change value from 0 to whatever you want over 0 (Default value is 50)
    * click OK
    -> Close the '''about:config''' tab and then Restart Firefox.
    See this post:
    * https://support.mozilla.com/en-US/questions/860894#answer-229574
    Check and tell if its working.

  • How can I go BACK to the site I was at, say, 5 site previous or forward without hitting the BACK arrow 5 times? The previous version had a drop down box with a list of previous sites I could click on.

    It can take a while to go back by hitting the back arrow again and again. The previous version had a drop down box that listed nine or ten previous URLs. This allowed me to pick out which one I wanted by clicking on that URL. Version 4 doesn't have this feature or, if it does, I cannot find it. Is this capability on Version 4, and if so, how can I find it?

    You can get the drop down list by either right-clicking on the back/forward buttons, or holding down the left button until the list appears.

  • I can no longer back more than 1 page by clicking on the "Back" arrow. I used to be able to go back multiple pages by clicking in front of the arrow

    When I want to go back multiple pages at a time, like 3 or 4 pages, I cannot find a way to do that.

    The down-arrow indicator on the Back/Forward button to list visited pages for a tab has been removed in Firefox 4. You can:
    *right-click the Back/Forward button for the list
    *HOLD down the left-click mouse button while on the Back/Forward button until the list appears
    *add the following Add-on to add back the down arrow:
    **https://addons.mozilla.org/en-US/firefox/addon/backforward-dropmarker/

  • When I right click on a report I need to run, I can not run it because a pop-up says "Back Forward Reload... Inspect Element ". How do I prevent this popup?

    I have created reports in Wal-Mart Retail Link. To run the report, you right click on the report and a pop-up comes up that allows you to modify, submit, delete or share this report. These options are hidden by another popup that gives the options to Back Forward Reload...Inspect Element (Q). It runs correctly when using Internet Explorer but not Firefox.

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Please report back soon.

  • There used to be a feature on the 'back' arrow; a small tiny down click arrow where i could choose a specific recent page to go back to. it saves hitting and reloading old pages i want to skip. what can i do now?

    at the top left corner of the tool bar, there is a 'back' arrow and a 'forward' arrow. before the latest software upgrade to firefox, i used a teeny tiny 'down' arrow that was to the right of the 'forward' arrow. when i clicked on the tiny 'down' arrow, it showed me a list of all the pages that had recently been opened; not just a website i might have been visiting, but all the pages i had navigated to on that website. i used the 'down' arrow as a shortcut to get back to a specific page which out having to click the 'back' arrow like ten times or more. i would really, really, really like for you to put that feature back, or tell me what i can do instead. thanks.

    You're welcome.

  • I right clicked on a image and now all my thumbnails are missing, how do I get them back?

    I was in Facebook trying to delete/block an image from my likes (I wanted to delete the like but couldn't so I thought I would just block the image) Anyway what I clicked on in the right click box took all my thumbnails off of Facebook. I would like to get them back, how do I do this?
    thank you

    See http://kb.mozillazine.org/Images_or_animations_do_not_load
    Check the image exceptions: Tools > Options > Content: Load Images: Exceptions<br />
    You can see the permissions for the server in the current tab in Tools > Page Info > Permissions<br />
    *A way to see which images are blocked is to click the favicon (<i>Site Identification</i> icon) on the left side of the location bar.
    *A click on the "More Information" button will open the Security tab of the "Page Info" window (also accessible via "Tools > Page Info").
    *Open the <i>Media</i> tab of the "Page Info" window.
    *Select the first image and scroll down though the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • What happened to the drop down menu on the navigation bar that showed previous pages visited? It was to the right of the "forward/back" arrows.

    To the right of the forward/back arrows there was a drop down arrow that would allow you to see the last several stops you had made after doing a search. This was very handy for going back and forth between articles, etc. '''I used it all the time and want it back. '''If this version of Firefox doesn't have it, please tell me how to download the previous version that did have it. Thanks.

    The Back/Forward button drop-down arrow marker was removed from Firefox.
    To get the tab history drop-down list, you can:
    *right-click the Back/Forward button
    *HOLD down the left-click mouse button on the Back/Forward button until the list appears (about 1 second)
    *Add back the drop-down marker by installing this Add-on: https://addons.mozilla.org/en-US/firefox/addon/backforward-dropmarker/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How to return to the original search page after clicking on numerous links w/o using the back arrow

    I want to return to the original search page without having to click the back arrow repeatedly to get back from where I have been searching

    The Back/Forward button drop-down arrow marker was removed from Firefox.
    To get the tab history drop-down list, you can:
    *right-click the Back/Forward button
    *HOLD down the left-click mouse button on the Back/Forward button until the list appears (about 1 second)
    *Add back the drop-down marker by installing this Add-on: https://addons.mozilla.org/en-US/firefox/addon/backforward-dropmarker/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

Maybe you are looking for

  • Laserjet Pro 400 color MFP M475dw print in black and white

    Hello, I have a Laserjet Pro 400 color MFP M475dw printer that is contected to a network so that multiple users can print from it. I want to be able to restrict it so that they can only print in black and white and double sided. Is this possible? and

  • Error in Build file

    Hi All, I have a simple build file which i am using Ant build in Eclipse to give build to. <project name="bobf" default="compile" basedir=".">      <property name="build.home"    value="${basedir}"/>      <target name="compile" >           <mkdir  di

  • Query for log Parser to get number of hits in a day or week for particular web applications or site collection

    Hi All, Want to get the number of hits in a day for a web application with IIS logs. so need to know Query for log Parser to get number hits in a day or week for particular web applications or site collection. Kindly help Regards, Naveen

  • Skype Update, Uninstall/Re-install issues

    Shut machine off. Came back later. Retarted.  Skype tries to update. Error. Try to restart Skype. Error. Tried to manual Update Object Already exists Installing Skype Failed, Code 1603 Fatal Error Occured during installation Went to uninstall program

  • How can we restrict EQL result based on session value

    How can we restrict EQL result based on session value or by checking with EBS secured function? Example: I create a Item Search Dashboard but I have more than one inventory organizations and I want to restrict dashboard to bring inventory org respect